当前位置: 代码迷 >> Sql Server >> select * from a where a.id not in(select id from b where b.c>0)这条语句是对的吗?解决方法
  详细解决方案

select * from a where a.id not in(select id from b where b.c>0)这条语句是对的吗?解决方法

热度:145   发布时间:2016-04-27 21:35:15.0
select * from a where a.id not in(select id from b where b.c>0)这条语句是对的吗?
如题

------解决方案--------------------
语法没问题
------解决方案--------------------
对的~
------解决方案--------------------
ok
------解决方案--------------------
当然正确
县查询表B的c列大于0的ID
然后查找a表中的ID不属于上一个子集的数据
  相关解决方案