oracle中merge into..using..on..when..when..用法

原文:oracle中merge into..using..on..when..when..用法


语法:

Sql代码  收藏代码

  1. MERGE INTO [your table-name] [rename your table here]     

  2.     

  3. USING ( [write your query here] )[rename your query-sql and using just like a table]     

  4.     

  5. ON ([conditional expression here] AND [...]...)     

  6.     

  7. WHEN MATHED THEN [here you can execute some update sql or something else ]     

  8.     

  9. WHEN NOT MATHED THEN [execute something else here ! ]    

 

实例:

Sql代码  收藏代码

  1. merge into tfa_alarm_act_nms a     

  2. using (select FP0,FP1,FP2,FP3,REDEFINE_SEVERITY     

  3. from tfa_alarm_status) b     

  4. on (a.fp0=b.fp0 and a.fp1=b.fp1 and a.fp2=b.fp2 and a.fp3=b.fp3)     

  5. when matched then update set a.redefine_severity=b.redefine_severity     

  6. when not matched then insert (a.fp0,a.fp1,a.fp2,a.fp3,a.org_severity,a.redefine_severity,  

  7. a.event_time  ,a.int_id)     

  8. values (b.fp0,b.fp1,b.fp2,b.fp3,b.REDEFINE_SEVERITY,b.redefine_severity,sysdate,7777778);    

 

 

作用:利用表 tfa_alarm_status跟新表tfa_alarm_act_nms 的b.redefine_severity,条件是a.fp0=b.fp0 and a.fp1=b.fp1 and a.fp2=b.fp2 and a.fp3=b.fp3,如果tfa_alarm_act_nms表中没有该条件的数据就插入。


你可能感兴趣的:(oracle,法语)