merge into基本用法

llnnmc發表於2018-10-12

由於merge into平時很少用,但這次用到它來給記錄做插入更新,於是簡單記下最基本的用法。這裡的例子就是給一個表中符合條件的資料做個值計數的更新,如果找到符合ID條件的記錄,那麼就將其值欄位加1,否則就插入這條新的記錄,並初始化值。

建立測試表並插入資料:
create table test1(id number, val number);
insert into test1 values(101, 1);
insert into test1 values(102, 1);
commit;
select * from test1;

        ID        VAL
---------- ----------
       101          1
       102          1

做merge into操作,新的一條資料被插入:
merge into test1 t1
using (select count(*) cnt from test1 where id = 103) t2 on (cnt <> 0)
when matched then
  update set val = val + 1 where id = 103
when not matched then
  insert values(103, 1);
commit;
select * from test1;

        ID        VAL
---------- ----------
       101          1
       102          1
       103          1

再執行一個merge into後,資料被更新:

        ID        VAL
---------- ----------
       101          1
       102          1
       103          2


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

相關文章