oracle
not in (null)查不到数据问题
# 问题语句
select * from A a where a.bbb001 not in (select distinct b.bbb001 from B b)
这个sql咋一看没啥问题,但是却查不到数据,后来还成 exits
写法之后就可以查到数据了,如下
select * from A a where not exits(select 1 from B b where a.bbb001 = b.bbb001)
原因是select 1 from DUAL where '2' not in ('1',null);
,not in 中是不能存在null的,B表中的数据有bbb001字段为null的情况。
并且in
写法适用与B中数据量小的情况,如果子查询的结果集中的数据量大的话推荐使用exits
。