select * from product where not exists (select productCode from somain where status != '已了结')
not exists :当 (select productCode from somain where status != '已了结') 查询不出任何结果的时候前面的select 语句才能继续执行查询
not in :查询出不存在在 (select productCode from somain where status != '已了结') 的资料
select * from product a where not exists (select productCode from somain where status != '已了结' and a.productCode=productCode)
这要看你表的具体结构跟数量
要看你表的具体结构跟数量
标签:exists
版权声明:文章由 百问十五 整理收集,来源于互联网或者用户投稿,如有侵权,请联系我们,我们会立即处理。如转载请保留本文链接:https://www.baiwen15.com/answer/138198.html