当前位置:网站首页>【MySQL】mysql:解决[Err] 1093 - You can‘t specify target table ‘表名‘ for update in FROM clause问题

【MySQL】mysql:解决[Err] 1093 - You can‘t specify target table ‘表名‘ for update in FROM clause问题

2022-08-09 08:00:00 Ctrl练习生-谢哥哥blog

原始sql

delete from at_phone where id not in(select id from at_phone where id!=1)

运行这段sql语句,结果报错
在这里插入图片描述

[Err] 1093 - 您不能在FROM子句中指定目标表“ at_phone”进行更新

原因解决:如果在增删改语句中,要使用子查询的形式进行增删改,那么应该把这个子查询进行第二次select一下并且给上表别名,才可以执行。这个第二次select实际上就是把第一次的select的结果集放在临时表中。

解决后的sql:

delete from at_phone where id not in(select * from (select id from at_phone where id!=1) a)

在这里插入图片描述
执行成功

总结

如果觉得不错,可以点赞+收藏或者关注下博主。感谢阅读!

原网站

版权声明
本文为[Ctrl练习生-谢哥哥blog]所创,转载请带上原文链接,感谢
https://blog.csdn.net/weixin_42825651/article/details/108618796