oracle批量update

來源:互聯網
上載者:User

需求:

將t2(t_statbuf)表中id和t1(T_Mt)表相同的記錄更新進t1表。

1.錯誤的寫法:

 update table_name t1 set (a,b,c)=( select a,b,c from table_name_2 t2 where t1.a=t2.a);

這種寫法,會更新t1表中的所有行:如果t1.a=t2.a的,就更新t2中查出的記錄進t1;如果t1.a<>t2.a的,t1中的記錄會被更新成空(null)。

正確的寫法:

 update table_name t1 set (a,b,c)=( select a,b,c from table_name_2 t2 where t1.a=t2.a) where exists(select 1 from table_name_2 t2 where t1.a=t2.a);

解析:

正確的寫法,就是在後面加了一句 where exists(select 1 from table_name_2 t2 where t1.a=t2.a);

這句話的意思是:如果存在t1.a=t2.a,就更新,否則,不更新,所以不會導致t1表中所有的記錄都被更新。

例:

update table_name_1 set (a,b) = (select 1,2 from dual where 1=2);

這個結果會把table_name_1中的記錄全部更新成空(null),因為後面1=2不成立。

總結:

update時,要弄清限定條件,要測試!

我的測試語句:

update my_time_test1 t1 set (MDATE,DISCRIPT) =(select MDATE,DISCRIPT from   my_time_test t2 where t1.DISCRIPT=t2.DISCRIPT) where exists (select 1 from   my_time_test t2 where t1.DISCRIPT=t2.DISCRIPT);

我的業務語句:

 update T_Mt t1 set (Stat,OStat,RptTime) =(  select Stat,Stat,RptTime from t_statbuf t2 where t1.MsgId=t2.MsgId) where exists(  select 1 from t_statbuf t2 where t1.MsgId=t2.MsgId);  --如果存在t1和t2相等的,就更新。不加where exists,是不管存不存在,都更新,不存在的,結果會被更新成空,但是那條記錄還在

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.