原文:MYSQL錯誤代碼: 1093 You can't specify target table 'sc' for update in FROM clause

MYSQL執行如下語句報錯: UPDATE sc SET grade grade . WHERE grade lt SELECT AVG grade AS avg grade FROM sc 報錯信息如下: 錯誤代碼: You can t specify target table sc for update in FROM clause 意思是不能在同一語句中更新select出的同一張表元組的屬性 ...

2016-07-28 19:04 0 11961 推薦指數:

查看詳情

You can't specify target table 'xxx' for update in FROM clause

1、執行sql語句報上面的錯誤: 報錯如下所示You can't specify target table 'xxx' for update in FROM clause。 原因:因為在MYSQL里,不能先select一個表的記錄,在按此條件進行更新和刪除同一個表的記錄。 詳細 ...

Sun May 12 17:52:00 CST 2019 0 1188
You can't specify target table 'a' for update in FROM clause

項目中有一個功能變動上線,其中有一張表ttt的字段cc,歷史數據需要處理,把字段cc中為’xxx’的值替換為'yyy'。 表A結構如下: 更新sql如下: 執行報錯: Duplicate ...

Thu Feb 21 23:20:00 CST 2019 0 1887
 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM