oracle not in 问题

写了个sql 语句 ,大概逻辑是这样: 查询 在8月份出现,在九月份没有出现 的 用户 。
很简单的语句,如下

select distinct e.assign_oper
          from eir_print_bill e
         where e.assign_time between
               to_date('2017-09-01 00:00:00', 'yyyy-MM-dd hh24:mi:ss') and
               to_date('2017-09-30 23:59:59', 'yyyy-MM-dd hh24:mi:ss')
           and e.assign_oper not in
               (select distinct epb.assign_oper
                  from eir_print_bill epb
                 where epb.assign_time between
                       to_date('2017-08-01 00:00:00', 'yyyy-MM-dd hh24:mi:ss') and
                       to_date('2017-08-31 23:59:59', 'yyyy-MM-dd hh24:mi:ss'));

查询的结果,空的 。
好吧,于是执行 前半部分,也就是八月份的 ,6条 数据 ; 后部分,也就是九月份的 ,4条数据 。

再理了一遍逻辑,完全没发现有什么问题 。陷入了困惑 ……

后来注意到: 后部分,也就是九月份的数据中有个值是 空的 ,于是试一下,去空值 。修改后语句如下:

select distinct e.assign_oper
  from eir_print_bill e
 where e.assign_time between
       to_date('2017-09-01 00:00:00', 'yyyy-MM-dd hh24:mi:ss') and
       to_date('2017-09-30 23:59:59', 'yyyy-MM-dd hh24:mi:ss')
   and e.assign_oper is not null
   and e.assign_oper not in
       (select distinct epb.assign_oper
          from eir_print_bill epb
         where epb.assign_time between
               to_date('2017-08-01 00:00:00', 'yyyy-MM-dd hh24:mi:ss') and
               to_date('2017-08-31 23:59:59', 'yyyy-MM-dd hh24:mi:ss')
           and epb.assign_oper is not null);

好了,正确的结果出来了 。

结论 :

not in 里面的值不能有 空值 。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值