Oracle not in 后面有null 查询不到记录!

1.概述:

Oracle中 null不能参与比较运算符,即与任何数据比较结果都为null。

in 后面可以有null ,not in后面不能有null

2. 为什么in 后面可以有null

select * from table1 as a where a.id in ( '1', null );

等同于

select * from table1 as a where a.id='1' or a.id=null;

当id=1 时 a.id=1为true 返回数据。

当id=null时 a.id='1'为false ,a.id=null  为null=null 结果为null 所以并不返回数据。

3. 为什么not in后面不可以有null

select * from table1 as a where a.id not in ( '1', null );

等同于

select * from talbe1 as a where a.id<>'1' and a.id<>null;

a.id<>null 的结果为null ,所以此sql不会返回数据。

4. 改造sql

select * from table1 as a where nvl(a.id,'空' ) not in ('1','空');

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值