我只是想知道是否有人能够帮助我进行 SQL 连接,因为我对 MySQL 还很陌生。我正在寻找加入两个表,这里是我的表和我正在寻找的最终结果的样子,在此先感谢!
TABLE ARTICLES
article_id title body date category author
1 Lorem Lorem ipsum.. 1/1/2013 1 Mitchell
TABLE CATEGORIES
category_id category
1 Web Design
SQL 语句
select categories.category_id, categories.category as category
from categories left outer join articles on categories.category = articles.category
我正在寻找的 SQL 结果
article_id title body date category author
1 Lorem Lorem ipsum.. 1/1/2013 Web Design Mitchell