MySQL中You can't specify target table for update in FROM clause錯誤的意思是說,不能先select出同一表中的某些值,再update這個表(在同一語句中)。 例以下面這個sql:
mysql
複製代碼代碼以下:
delete from tbl where id in
(
select max(id) from tbl a where EXISTS
(
select 1 from tbl b where a.tac=b.tac group by tac HAVING count(1)>1
)
group by tac
)
改寫成下面就好了:sql
複製代碼代碼以下:
delete from tbl where id in
(
select a.id from
(
select max(id) id from tbl a where EXISTS
(
select 1 from tbl b where a.tac=b.tac group by tac HAVING count(1)>1
)
group by tac
) a
)
也就是說將select出的結果再經過中間表select一遍,這樣就規避了錯誤。注意,這個問題只出現於mysql,mssql和Oracle不會出現此問題。數據庫
You can't specify target table for update in FROM clause含義:不能在同一表中查詢的數據做爲同一表的更新數據。oracle
例如:ide
我想查詢t_user_asset的餘額加上50000做爲更新字段f_cashAmount的值,這樣寫是不行的。
url
以上問題只針對mysql數據庫