当前位置:   article > 正文

oracle not in和not exists在处理null值时的区别_oracle的not in空值

oracle的not in空值

        发现oracle中的一个坑:not in 中如果结果集存在null,会使得所有行都不符合条件。建议用not extsts 可避免null的干扰

  1. create table test1 (col number);
  2. create table test2 (col number);
  3. insert into test1 values(1);
  4. insert into test1 values(2);
  5. insert into test2 values(1);
  6. insert into test2 values('');
  7. select * from test1 where col not in (select col from test2) --查询结果:空 结果和设想的不一样,2 判断 not in (1,null) 为false 。null的存在使所有行都不符合条件
  8. select * from test1 t where not exists (select 1 from test2 where col = t.col) --查询结果:2 符合预期

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/479995
推荐阅读
相关标签
  

闽ICP备14008679号