码迷,mamicode.com
首页 > 其他好文 > 详细

ORCAL Merge into用法总结

时间:2019-01-31 13:32:57      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:else   key   select   str   merge   简单的   ber   schedule   where   

简单的说就是,判断表中有没有符合on()条件中的数据,有了就更新数据,没有就插入数据。  

有一个表T,有两个字段a、b,我们想在表T中做Insert/Update,如果条件满足,则更新T中b的值,否则在T中插入一条记录。在Microsoft的SQL语法中,很简单的一句判断就可以了,SQL Server中的语法如下: 

用法:

ifexists(select1from T where T.a=‘1001‘ )

update Tset T.b=2Where T.a=‘1001‘

else

insertinto T(a,b)values(‘1001‘,2)

orcal对应写法

merge into 目标表 a

using 源表 b

on(a.条件字段1=b.条件字段1 and a.条件字段2=b.条件字段2 ……)

when matched then update set a.更新字段=b.字段

when not macthed then insert into a(字段1,字段2……)values(值1,值2……)

 

实例:

sel server :

insert into scheduler_chain_proc select 3, 650, 60 
where not exists(select processId from scheduler_chain_proc where ProcessId = 60);

orcar:

merge into scheduler_chain_proc using dual on (ProcessId = 60)
when not matched then
insert values (3, 650, 60)

 

ORCAL Merge into用法总结

标签:else   key   select   str   merge   简单的   ber   schedule   where   

原文地址:https://www.cnblogs.com/luquanjian/p/10341246.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!