zoukankan      html  css  js  c++  java
  • in not in 和 null , in 判断范围中可以包含null,而not in判断不能包括null

    oracle中,任何字符串与null比较得到的结果都是null,而 oracle的判断条件为null时就退出判断(?)

    因此判断某个字符串是否在一个集合中时,not in 和 in的结果完全不一样,如

    select * from airport_heliport  t where t.airport_heliport_uuid in
    (
      select 'e6513669-8cb7-41d9-85af-11ab26930790' from dual
      union
      select null from dual
    )

    返回正常一条记录,

    而,将 in 改成 not in后,感觉应该返回多条记录,但实际上返回空集合。

    原因是:

    in 判断时,每条记录与集合里的每一个记录比较,只要有一条记录比较相同,就返回true。所以,即使这个集合里有null,也不影响in的结果。

    但not in就不一样了,not in要与集合中每条记录比较,每条记录都不相同才返回true。当集合中包含null时,每条记录与之比较都会退出,所以返回的集合也必定为null

    因此,not in 判断的集合不能包含null,而in判断的集合可以包括null

    此外,如果一个字段a可以取值 Y,N和null;如果要取出所有不为Y的记录,不能写成 where a<>'Y',这样所有取值为null的记录并不能返回,也不能写成 where a in (null,'N'),同样也取不到null的记录

    只能写成

    where nvl(a,'N') ='N' 或者

    where a is null or a ='N'

  • 相关阅读:
    hdoj1251 统计难题 字典树
    nyoj322 sort 归并排序,树状数组
    优先队列 如何使用
    字典树(讲解+模版)
    hdoj1069 Monkey and Banana
    ny10 skilng
    hdoj1075 What Are You Talking About
    hdoj1171 Big Event in HDU
    ny613 免费馅饼
    Spring Boot2.0之Admin-UI分布式微服务监控中心
  • 原文地址:https://www.cnblogs.com/mol1995/p/7683502.html
Copyright © 2011-2022 走看看