根據結構基本相同的A表的值更新B表

tolywang發表於2010-07-05


表test、test2中均含有兩個欄位num number(10),ch varchar2(100),現在我想把test2表中的num與test表中相等的那些ch欄位的值更新為test表中的ch欄位值。在SqlServer中可以透過如下語句實現:
update test2 set test2.ch=test.ch where test2.num=test.num;


update test1 a1
set   ch=(select ch from test2 b1 where a1.num=b1.num)
where num in ( select a2.num from test1 a2,test2 b2 where a2.num=b2.num);

 

總結一下:

透過一個表的某些欄位更新另外一個表的相應欄位,在SQLSERVER中可透過如下方法實現:
update 要更新的表 set 要更新的欄位=源表中對應的欄位 where 要更新表中的欄位=源表中的欄位;

在ORACLE中可透過如下方法實現:
update 要更新的表 set 要更新的欄位=(從源表中選擇出來的符合條件的要更新的值的集合) where 要
更新的欄位 in (從要更新表中選出的要更新欄位的所有值的集合); 

 

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

相關文章