A有很多B
通常你会做的:
select * from a,b where b.a_id = a.id
从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