技巧:关于null值的查询

1、null表示未知的数据变量,与''是有区别的。

2、null的比较运算 is null 和 is not null
如:查询某字段为null的记录
select * from tablename from fieldname is null
也可以这样:select * from tablename from isnull(fieldname,'XXXX')='XXXX'
利用isnull把null记录转化成特殊的记录再查询,但一般不建议这么做

3、理解NULL如何影响IN和EXITS语句
从表面上看,in和exits的sql语句是可互换和等效的。然而,它们在处理uull数据时会有很大的差别,并导致不同的结果。问题的根源是在一个oracle数据库中,一个null值意味着未知变量,所以操作null值的比较函数的结果也是一个未知变量,而且任何返回null的值通常也被忽略。例如,以下查询都不会返回一行的值:

select true from dual where 1 = null;

select true from dual where 1 != null;

只有is null才能返回true,并返回一行:

select true from dual where 1 is null;

select true from dual where null is null;

 

当你选择使用in,你将会告诉sql选择一个值并与其它每一值相比较。如果null值存在,将不会返回一行,即使两个都为null。

select true from dual where null in (null);

select true from dual where (null,null) in ((null,null));

select true from dual where (1,null) in ((1,null));


一个in语句在功能上相当于= any语句:

select true from dual where null = any (null);

select true from dual where (null,null) = any ((null,null));

select true from dual where (1,null) = any ((1,null));

 

当你使用一个exists等效形式的语句,sql将会计算所有行,并忽略子查询中的值。


select true from dual where exists (select null from dual);

select true from dual where exists (select 0 from dual where null is null);

 

in和exists在逻辑上是相同的。in语句比较由子查询返回的值,并在输出查询中过滤某些行。exists语句比较行的值,并在子查询中过滤某些行。对于null值的情况,行的结果是相同的。

selectename from emp where empno in (select mgr from emp);

selectename from emp e where exists (select 0 from emp where mgr = e.empno);

 

然而当逻辑被逆向使用,即not in 及not exists时,问题就会产生:

selectename from emp where empno not in (select mgr from emp);

selectename from emp e where not exists (select 0 from emp where mgr =

e.empno);

 

not in语句实质上等同于使用=比较每一值,如果测试为false或者null,结果为比较失败。例如:

select true from dual where 1 not in (null,2);

select true from dual where 1 != null and 1 != 2;

select true from dual where (1,2) not in ((2,3),(2,null));

select true from dual where (1,null) not in ((1,2),(2,3));


这些查询不会返回任何一行。第二个查询语句更为明显,即1 != null,所以整个where都为false。然而这些查询语句可变为:

select true from dual where 1 not in (2,3);

select true from dual where 1 != 2 and 1 != 3;

 

你也可以使用not in查询,只要你保证返回的值不会出现null值:

selectename from emp where empno not in (select mgr from emp where mgr is not

null);

selectename from emp where empno not in (select nvl(mgr,0) from emp);

 

通过理解in,exists, not in,以及not exists之间的差别,当null出现在任一子查询中时,你可以避免一些常见的问题。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值