作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
大家好,我遇到了一个小问题。所以我得到了 2 个表 robot_calls 和发票。我正在尝试获取不在 robot_calls.invoice_id 中的发票 ID。我收到错误 Unknown column in 'where clause
。
SELECT * FROM invoices where `desc`='Invoice from mr. Robot' NOT IN
(SELECT * FROM invoices where robot_calls.invoice_id=invoices.id)";
我不是 sql 专家,有人可以启发我吗?
干杯。
最佳答案
您需要从 robot_calls
表中选择一个 id
列来执行此查询:WHERE invoice_id NOT IN (SELECT invoice_id FROM robot_calls)
此查询的另一种替代方法是使用存在量词:
SELECT *
FROM invoices iv
WHERE NOT EXISTS (SELECT * FROM robot_calls rc WHERE rc.invoice_id=iv.invoice_id)
AND iv.desc='Invoice from mr. Robot'
关于mysql - SQL查询,NOT IN返回错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48114849/
我是一名优秀的程序员,十分优秀!