您好,登錄后才能下訂單哦!
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值即可。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。