我有一个带有字段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);
有人可以帮我识别问题吗