記一個低階又嚴重的錯誤

space6212發表於2019-03-13

今天在做兩表關聯update的時候,發現產生的日誌量遠遠超出想象,update的sql如下:

update t1 set t1.name=(select t2.name from t2 where t1.id=t2.id)

其中t2只有幾條資料。按我以前的觀點,只更新t1表中id在t2存在的記錄,但測試結果讓我大吃一驚:


> select count(1) from item where item_name is null;

COUNT(1)
----------
0

> update item set item_name=(select item_name from t where t.item_id=item.item_id);

已更新151612行。

> select count(1) from item where item_name is null;

COUNT(1)
----------
151603

可見,像這種update操作的更新方式是:如果在t2表存在的資料,就用t2的item_name更新t1的item_name;否則則將t1的item_name 更新為null。如果t1的item_name不能為null,則會報錯:

ORA-01407: 無法更新 ("SUK"."ITEM"."ITEM_NAME") 為 NULL

這個低階錯誤造成的效果可能會非常嚴重!

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/231499/viewspace-63717/,如需轉載,請註明出處,否則將追究法律責任。

相關文章