前端之家收集整理的这篇文章主要介绍了
sql – 如何查找未加入的记录?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有两个连接在一起的表.
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
原文链接:https://www.f2er.com/mssql/81982.html