0
表1 表2加入空值
select col1, col2, etc
from table 1
left join table 2
on table1.col1 = table2.col1
如果table2.col1具有空值,將在某種程度上搞砸了我加入的結果嗎?
表1 表2加入空值
select col1, col2, etc
from table 1
left join table 2
on table1.col1 = table2.col1
如果table2.col1具有空值,將在某種程度上搞砸了我加入的結果嗎?
不,table2
空值在這種情況下無關緊要。左連接將匹配從table1
到table2
的所有行。如果table2
中的一行在table1
中不匹配,它將不會出現在結果集中。