我想从表格中选择数据 ID | FOO | CITY | BAR
还有另一个表格,其中存储了所有已选择的数据,以便获得独特的结果。这张表看起来像 ID | ID_from_other_table
如果我要么应该使用左联盟还是联盟,我现在还在坚持? 哪一个更快,我怎样才能以正确的方式设置它?
答案 0 :(得分:1)
left join
在MySQL中可能可能更快,而不是not in
和not exists
等其他反连接模式。
select t1.*
from table1 t1
left join table2 t2 on t1.id = t2.id_from_other_table
where t2.id is null