ORCAL Merge into用法总结
Posted luquanjian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ORCAL Merge into用法总结相关的知识,希望对你有一定的参考价值。
简单的说就是,判断表中有没有符合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用法总结的主要内容,如果未能解决你的问题,请参考以下文章