sql – 如何查找未加入的记录?
发布时间:2020-12-12 16:36:46 所属栏目:MsSql教程 来源:网络整理
导读:我有两个连接在一起的表. 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) 或者像这个线程上的其他人一样说: s
我有两个连接在一起的表.
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 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |