gpt4 book ai didi

mysql - SQL查询,NOT IN返回错误

转载 作者:行者123 更新时间:2023-11-29 01:15:41 25 4
gpt4 key购买 nike

大家好,我遇到了一个小问题。所以我得到了 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com