You can’t specify target table f
2017-10-25 本文已影响0人
赛亚人之神
不能查询一个表然后再修改这个表,在内层查询中嵌套一个查询,认为是查询中间表
update product set company = 'TG' WHERE id in ( SELECT cc.id from (SELECT tt.id from product tt WHERE tt.product_no like 'TG%') cc);
不能查询一个表然后再修改这个表,在内层查询中嵌套一个查询,认为是查询中间表
update product set company = 'TG' WHERE id in ( SELECT cc.id from (SELECT tt.id from product tt WHERE tt.product_no like 'TG%') cc);