今天在寫 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 都是同一個表。致此問題得到完美解決。