我有两张桌子连在一起.
A有很多B.
通常你会这样做:
select * from a,b where b.a_id = a.id
从b中记录的所有记录中获取记录.
如何获得b中没有任何内容的记录?
select * from a where id not in (select a_id from b)
或者像这个帖子中的其他人说:
select a.* from a left outer join b on a.id = b.a_id where b.a_id is null
select * from a left outer join b on a.id = b.a_id where b.a_id is null
另一种方法:
select * from a where not exists (select * from b where b.a_id = a.id)
如果您需要将其他"where"子句附加到内部查询,则"exists"方法很有用.