SQL不存在自联接

时间:2016-01-25 10:09:53

标签: sql

我有一张桌子,里面存有发给顾客的所有信件。我需要运行一个查询来选择收到letter_2但不是letter_1的所有account_id。因此,例如,下面的结果应该是帐户2& 3。

Account_ID Letter_Type
1          Letter_1
1          Letter_2
1          Letter_3
1          Letter_2
2          Letter_2
2          Letter_3
3          Letter_2

提前致谢!

1 个答案:

答案 0 :(得分:1)

这样做的直接方法是使用except

select account_id 
from the_table 
where letter_type = 'Letter_2' 
except 
select account_id 
from the_table 
where letter_type = 'Letter_1'

使用not exists的反连接看起来像这样:

select t1.account_id 
from the_table t1
where t1.letter_type = 'Letter_2' 
  and not exists (select *
                  from the_table t2
                  where t2.letter_type = 'Letter_1' and 
                    and t1.account_id = t2.account_id);

您没有说明您的DBMS,但以上是标准ANSI SQL