SQL “select where not in subquery” returns no results

后端 未结 11 2008
滥情空心
滥情空心 2020-11-29 14:46

Disclaimer: I have figured out the problem (I think), but I wanted to add this issue to Stack Overflow since I couldn\'t (easily) find it anywhere. Also, someone might

11条回答
  •  误落风尘
    2020-11-29 15:25

    this worked for me :)

    select * from Common

    where

    common_id not in (select ISNULL(common_id,'dummy-data') from Table1)

    and common_id not in (select ISNULL(common_id,'dummy-data') from Table2)

提交回复
热议问题