更新和同一查询中的2个select语句导致错误

时间:2015-08-16 10:38:24

标签: mysql sql

我有一个带有字段c_id的表,其中的条目包含一些CustomerIds值。 如果那些客户ID根据表格无效,我需要将它们设置为null。

我正在使用以下查询。但它似乎抛出了一个错误:

update Customers set c_id=NULL where customer_id in (select customer_id from Customers where c_id not in (select customer_id from Customers);

有人可以帮我识别问题吗

0 个答案:

没有答案