merge into on条件能有Null判断嘛

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了merge into on条件能有Null判断嘛相关的知识,希望对你有一定的参考价值。

参考技术A 不能。
NULL表示unknown,不确定值,所以任何值(包括null值)和NULL值比较都是不可知的,在on子句,where子句,Merge或case的when子句中,任何值和null比较的结果都是false

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)

 












以上是关于merge into on条件能有Null判断嘛的主要内容,如果未能解决你的问题,请参考以下文章

oracle中merge into用法解析

ORACLE MERGE INTO

oracle中merge into用法解析

Oracle存储过程merge into

Oracle中Merge into用法总结

merge into using 详解