解决You can‘t specify target table ... for update in FROM clause

时间:2023年12月04日

/

来源:网络

/

编辑:佚名

问题来源:LeetCode196. Delete Duplicate Emails。 一开始我写的SQL代码是:
delete from Person where (email, id) not in
(select email, min(id) minId from Person group by email)
结果报错:Runtime Error
You can’t specify target table ‘Person’ for update in FROM clause
谷歌了一下,从StackOverflow You can’t specify target table for update in FROM clause 得到了答案:
The problem is that MySQL, for whatever inane reason, doesn’t allow you to write queries like this:
UPDATE myTable SET myTable.A =
(
    SELECT ... FROM myTable...
)
That is, if you’re doing an UPDATE/INSERT/DELETE on a table, you can’t reference that table in an inner query.
The solution is to replace the instance of myTable in the sub-query with (SELECT * FROM myTable), like this:
UPDATE myTable SET myTable.A =
(
    SELECT ... FROM (SELECT * FROM myTable) AS something ...
)
所以本题,把子查询中的Person改为(select * from Person) P, 就ok了:
delete from Person where (email, id) not in
(select email, min(id) minId from (select * from Person) P group by email)
猜你需要

豫ICP备2021026617号-1  豫公网安备:41172602000185   Copyright © 2021-2028 www.78moban.com/ All Rights Reserved

本站作品均来自互联网,转载目的在于传递更多信息,并不代表本站赞同其观点和对其真实性负责。如有侵犯您的版权,请联系 1565229909#qq.com(把#改成@),我们将立即处理。