oracle和mysql關於關聯更新的一些差別以及ERROR 1093
mysql報錯 ERROR 1093 (HY000): You can't specify target table 'a' for update in FROM clause
今天網站有些資料出現異常,需要把出現異常的資料更正,具體操作是把一個表中的publish_date欄位關聯更新成同一個表中的up_date欄位,我們的資料是先存到oracle,然後透過到mysql中的,所有異常資料存在於oracle和mysql。
首先在oracle中更正:
SQL>update infoservice.t_publish_zbxx a set a.publish_date=(select b.up_date from infoservice.t_publish_zbxx b where a.record_id=b.record_id) where a.publish_date>to_date('2017-10-15','yyyy-mm-dd');
然後對應著改寫成mysql相應表和相應sql,居然報錯。。。。
mysql> update v_publish_info a set a.publish_date=(select b.up_date from v_publish_info b where a.id=b.id) where a.publish_date>'2017-07-15';
ERROR 1093 (HY000): You can't specify target table 'a' for update in FROM clause
解決辦法:
mysql> update v_publish_info a,v_publish_info b set a.publish_date=b.up_date where a.id=b.id and a.publish_date>'2017-07-15';
或者
1,把要更新的幾列資料查詢出來做為一個第三方表,然後篩選更新。
2,新建一個臨時表儲存查詢出的資料,然後篩選更新。最後刪除臨時表。
具體如下:
create table liuwenhe.publish_date_temp as select id ,publish_date,up_date from info.v_publish_info where publish_date>'2017-07-15';
update info.v_publish_info a set a.publish_date=(select b.up_date from liuwenhe.publish_date_temp b where a.id=b.id) where a.publish_date>'2017-07-15';
為了防止匹配不上,更新為空的問題,可以加上exists條件;
update info.v_publish_info a set a.publish_date=(select b.up_date from liuwenhe.publish_date_temp b where a.id=b.id) where a.publish_date>'2017-07-15' and exists (select b.up_date from liuwenhe.publish_date_temp b where a.id=b.id);
如下是關於關聯更新的一些實驗:
mysql:
1.成功
mysql> update liuwenhe.publish_date_20170715 a set a.publish_date=(select b.up_date from info.v_publish_info b where a.id=b.id) where a.publish_date>'2017-07-15' and exists (select b.up_date from info.v_publish_info b where a.id=b.id );
Query OK, 0 rows affected (0.00 sec)
Rows matched: 0 Changed: 0 Warnings: 0
2.失敗
mysql> update liuwenhe.publish_date_20170715 a set a.publish_date=(select b.up_date from liuwenhe.publish_date_20170715 b where a.id=b.id) where a.publish_date>'2017-07-15';
ERROR 1093 (HY000): You can't specify target table 'a' for update in FROM clause
3.成功
mysql> update liuwenhe.publish_date_20170715 a,liuwenhe.publish_date_20170715 b set a.publish_date=b.in_date where a.id=b.id and a.publish_date>'2017-07-15';
Query OK, 0 rows affected (0.01 sec)
Rows matched: 0 Changed: 0 Warnings: 0
oracle:
4.失敗
SQL> update liuwenhe.top_80 a,infoservice.t_member_info b set a.login_id=b.login_id where a.member_id=b.record_id;
update liuwenhe.top_80 a,infoservice.t_member_info b set a.login_id=b.login_id where a.member_id=b.record_id
ERROR at line 1:
ORA-00971: missing SET keyword
5.失敗:
SQL> update liuwenhe.top_80 a,liuwenhe.top_80 b set a.login_id=b.login_id where a.member_id=b.member_id;
update liuwenhe.top_80 a,liuwenhe.top_80 b set a.login_id=b.login_id where a.member_id=b.member_id
ERROR at line 1:
ORA-00971: missing SET keyword
6.成功
SQL>update liuwenhe.top_80 a set a.login_id=(select b.login_id from infoservice.t_member_info b where a.member_id=b.record_id);
總結:透過實驗1和2比較可以知道,mysql中是不能關聯更新同一個表的,但是oracle中可以;實驗4和5可以知道oracle中不能使用update a,b set a.=b.之類的語句;實驗3可以知道,mysql可以使用update a,b set a.=b.之類的語句來關聯更新表;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29654823/viewspace-2143509/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- MySQL關聯多表更新的操作MySql
- 關於MYSQL DML(UPDATE DELETE)中的子查詢問題和ERROR 1093 (HY000)錯誤MySqldeleteError
- php關聯陣列和索引陣列差別PHP陣列索引
- Oracle多表關聯更新的語法Oracle
- mysql報錯ERROR 1093MySqlError
- 【MySQL】ERROR 1093 You canMySqlError
- 關於oracle的一些命令Oracle
- 關於Ajax和websocket的區別以及使用場景!Web
- 《關於MySQL的一些騷操作》MySql
- 關於MySQL的一些小見解MySql
- 關於MySQL event的一些整理MySql
- 關於Vue和React區別的一些筆記VueReact筆記
- android 關於關於子執行緒更新UI的一些事Android執行緒UI
- 關於mysql設定varchar 欄位的預設值''和null的區別,以及varchar和char的區別MySqlNull
- 異構資料庫的關聯查詢 oracle hsodbc 關聯mysql資料庫OracleMySql
- 關於Mysql使用的一些總結MySql
- MySql關於鎖的一些總結MySql
- 關於 MySQL 索引的一些認識MySql索引
- Oracle\MS SQL Server Update多表關聯更新OracleSQLServer
- 關於MYSQL中FLOAT和DOUBLE型別的儲存MySql型別
- 【原】Oracle中Left Outer Join和外關聯(+)的區別Oracle
- 關於 Angular 部署以及 index.html 裡 base hRef 屬性的關聯關係AngularIndexHTML
- MYSQL多表更新刪除以及和ORACLE的對比MySqlOracle
- 關於Oracle塊的一些總結Oracle
- 關於ORACLE MYSQL NOT IN和NOT exists需要注意的 NULL值OracleMySqlNull
- 關於Oracle和MySQL中的無密碼登入OracleMySql密碼
- MySQL和Oracle的新增欄位的處理差別MySqlOracle
- vue 關於陣列和物件的更新Vue陣列物件
- 關於informix和oracleORMOracle
- 關於MySQL中的自聯結的通俗理解MySql
- “=》”關聯運算子在Oracle 10g和11g的變化差異Oracle 10g
- 關於Oracle的BLOB和CLOBOracle
- 關於git分支的一些用法(持續更新中…)Git
- mysql 關於exists 和in分析MySql
- Oracle多表關聯更新的方式選擇, Loop or Hash update?OracleOOP
- mysql 關聯更新刪除不走索引優化MySql索引優化
- 關於Jpa和Mybatis的一些看法MyBatis
- 關於oracle中大物件處理的一些方法和例項Oracle物件