【沫沫金】Sql子查詢Not In 無結果緣由

背景源碼

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

查詢效果

【沫沫金】Sql子查詢Not In 無結果緣由
無任何匹配值。。。ide

緣由

not in 解析後的執行語句是(id!=1 and id!=2 and id!=null)3d

注意,其中的null。空值存在將會致使條件總體失敗,因此無任何匹配數值。code

解決方案

排除null值,便可完成指望結果。blog

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

調整後的Sql,執行效果以下
【沫沫金】Sql子查詢Not In 無結果緣由源碼


回顧下,not in 是and條件,不能有null值。樹結構,父級字段免不了有空值,因此查詢不到。排除null值便可。it

相關文章
相關標籤/搜索