mysql 一個較特殊的問題:You can”t specify target table ”wms_cabinet_form”

來源:互聯網
上載者:User

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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.