码迷,mamicode.com
首页 > 数据库 > 详细

【沫沫金】Sql子查询Not In 无结果原因

时间:2018-10-16 14:31:04      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:text   ado   oss   期望   -o   ges   item   type   block   

背景源码
select * from ITEM where item_id not in (select parent_item_id from ITEM )

查询效果

技术分享图片
无任何匹配值。。。

原因

not in 解析后的执行语句是(id!=1 and id!=2 and id!=null)

注意,其中的null。空值存在将会导致条件整体失败,所以无任何匹配数值。

解决方案

排除null值,即可完成期望结果。

select * from ITEM where item_id not in (select parent_item_id from ITEM where parent_item_id is not null)

调整后的Sql,执行效果如下
技术分享图片


回顾下,not in 是and条件,不能有null值。树结构,父级字段免不了有空值,所以查询不到。排除null值即可。

【沫沫金】Sql子查询Not In 无结果原因

标签:text   ado   oss   期望   -o   ges   item   type   block   

原文地址:http://blog.51cto.com/zl0828/2300549

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!