MySQL 的1093错误

原文链接: https://blog.csdn.net/muwan2900/article/details/88050932

1093错误为:但修改一个表的时候子查询不能是同一个表,解决办法:把子查询再套一层就可以了,例如:


update mt_device set area_id=null WHERE reg_code in(select c.reg_code from (select reg_code from mt_device where area_id=19)c);  这是对的
但是 update mt_device set area_id=null WHERE reg_code in (select reg_code from mt_device where area_id=19);就会报1093错误。

你可能感兴趣的:(mysql)