假设我有两张桌子:
表格1
Id Name
1 Joe
2 Greg
3 Susan
4 Max
表2
Uid comment
2 Good customer
4 Great guy
我想要做的是列出表 1 的所有元素,如果 Table1.Id = Table2.Uid 我想选择这个评论。如果评论不存在,请给出空白字段。
结果应该是:
1 Joe
2 Greg Good customer
3 Susan
4 Max Great Guy
如果我写,我不知道该怎么做:
select
table1.Id,
table1.Name,
table2.comment
where
table1.id=table2.Uid
它只给了我用户 2 和 4。