ORACLE 批量修改多列多行的資料 轉 http://5icto.blog.51cto.com/3431949/714387

來源:互聯網
上載者:User

如何更新兩個表之前的不同資料呢?那麼必然存在多條資料中多個欄位的資料不同情況。下面我舉例說明:

1、建立表

  1. create table tb1  
  2. (id varchar2(10),  
  3. xm varchar2(10),  
  4. xb varchar2(10));  
  5.  
  6. create table tb2  
  7. (id varchar2(10),  
  8. xm varchar2(10),  
  9. xb varchar2(10)); 

2、插入測試資料

  1. insert into tb1 values('1','xx','xx');  
  2. insert into tb1 values('2','yy','yy');  
  3. insert into tb1 values('3','zz','zz');  
  4. insert into tb1 values('5','mm','mm');  
  5.  
  6. insert into tb2 values('1','1','1');  
  7. insert into tb2 values('2','2','2');  
  8. insert into tb2 values('3','3','3');  
  9. insert into  tb2 values('4','4','4');

3、下面提供兩種方式,執行以下SQL語句,並查看結果:

 

  1. update tb2 set xm=(select xm from tb1 where tb1.id=tb2.id),xb=(select xb from tb1 where tb1.id=tb2.id) where id in(select id from tb1);  
  2.  
  3. update tb2 set(xm,xb)=(select xm,xb from tb1 where tb1.id=tb2.id)  where id in(select id from tb1); 

4、注意以上紅色標記的SQL語句,請自行去掉後,做下測試,會有什麼不同。

5、測試完,請刪除表。養成良好習慣。

    1. drop table tb1;  
    2. drop table tb2;
相關文章

聯繫我們

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