您好,登錄后才能下訂單哦!
select * from ITEM where item_id not in (select parent_item_id from ITEM )
無任何匹配值。。。
not in 解析后的執(zhí)行語句是(id!=1 and id!=2 and id!=null)
注意,其中的null??罩荡嬖趯е聴l件整體失敗,所以無任何匹配數(shù)值。
排除null值,即可完成期望結(jié)果。
select * from ITEM where item_id not in (select parent_item_id from ITEM where parent_item_id is not null)
調(diào)整后的Sql,執(zhí)行效果如下
回顧下,not in 是and條件,不能有null值。樹結(jié)構(gòu),父級字段免不了有空值,所以查詢不到。排除null值即可。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。