作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何简化多个“不在”查询?使用多个子查询是否有效:Not in (...) and Not in (..) and Not in (..)
我正在使用计数(抱歉忘记了)
Select count (VisitorID)
from Company
where VisitorID not in (select VisitorID from UserLog where ActionID = 2 )
and VisitorID not in (select VisitorID from Supplies where productID = 4)
最佳答案
Select count (VisitorID)
from Company C
where
NOT EXISTS (select * from UserLog U where ActionID = 2 AND C.VisitorID = U.VisitorID)
AND
NOT EXISTS (select * from Supplies S where productID = 4 AND S.VisitorID = U.VisitorID)
关于sql - 对多个表使用 NOT IN,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3805153/
我是一名优秀的程序员,十分优秀!