mysql 一個較特殊的問題:You can't specify target table 'wms_cabinet_form' for update in FROM clause

原文地址:http://www.cnblogs.com/chy1000/archive/2010/03/02/1676282.html

 

今天在寫 mysql 遇到一個比較特殊的問題。
mysql 語句如下:

update wms_cabinet_form set cabf_enabled=0

where cabf_id in (

SELECT wms_cabinet_form.cabf_id FROM wms_cabinet_form

Inner Join wms_cabinet ON wms_cabinet_form.cabf_cab_id = wms_cabinet.cab_id

Inner Join wms_cabinet_row ON wms_cabinet.cab_row_id =wms_cabinet_row.row_id

where wms_cabinet_row.row_site_id=27 and wms_cabinet_form.cabf_enabled=1)


運 行時提出如下提示: You can't specify target table 'wms_cabinet_form' for update in FROM clause

運行 in 裏面的 select 字句:

 

SELECT wms_cabinet_form.cabf_id FROM wms_cabinet_form

Inner Join wms_cabinet ON wms_cabinet_form.cabf_cab_id = wms_cabinet.cab_id

Inner Join wms_cabinet_row ON wms_cabinet.cab_row_id =wms_cabinet_row.row_id

where wms_cabinet_row.row_site_id=27 and wms_cabinet_form.cabf_enabled=1

 

可以正確 select 正確結果。再把結果直接寫到 in 裏面,改後語句如下:

update wms_cabinet_form set cabf_enabled=0 where cabf_id in ('113','114','115'),再運行可以正確執行更新。

到這一步開始想不明白,爲什麼用 select 子句運行會出錯呢?以前在 mssql 這種寫法是很常見的。
沒辦法了,唯有動用 baidu。找到兩條記錄。

原 來原因是:mysql中不能這麼用。 (等待mysql升級吧)。那串英文錯誤提示就是說,不能先select出同一表中的某些值,

再 update這個表(在同一語句中)。 也找到替代方案,重寫改寫了 sql 。

 

改寫後的 sql 如下所示,大家仔細區別一下。

 

update wms_cabinet_form set cabf_enabled=0 where cabf_id in (

SELECT a.cabf_id FROM (select tmp.* from wms_cabinet_form tmp) a

Inner Join wms_cabinet b ON a.cabf_cab_id = b.cab_id

Inner Join wms_cabinet_row c ON b.cab_row_id = c.row_id

where c.row_site_id=29 and a.cabf_enabled=1)

 

重 點在 SELECT a.cabf_id FROM (select tmp.* from wms_cabinet_form tmp) a ,我 select tmp.* from wms_cabinet_form tmp 作爲子集,

然後再 select a.cabf_id FROM 子集,這樣就不會 select 和 update 都是同一個表。致此問題得到完美解決。



參考文章:
http://zhidao.baidu.com/question/68619324.html
http://blog.163.com/xiaoqiu_1120/blog/static/121632322007112411424982/

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章