比如 a,b 关联列为 a.id = b.id,现在要取 a 中的数据,其中id在b中也存在:
select * from a where exists(select 1 from b where b.id = a.id)
或者:
现在要取 a 中的数据,其中id在b中 不存在:
select * from a where not exists(select 1 from b where a.id = b.id)
原文地址:https://www.cnblogs.com/houchen/p/11966389.html
时间: 2024-10-17 16:41:12