我有table A, B and C
我想返回表 A 中不存在于表 B 中且该列表中的所有条目在表 C 中不存在。
select * from table_A as a
where not exists (select 1 from table_B as b
where a.id = b.id)
这给了我 A 中不在 B 中的条目的第一个结果。但是现在我只想要该结果中也不在 C 中的那些条目。
我尝试了以下口味:
select * from table_A as a
where not exists (select 1 from table_B as b
where a.id = b.id)
AND
where not exists (select 1 from table_C as c
where a.id = c.id)
但这不是正确的逻辑。如果有办法存储第一个查询的结果,然后从表 C 中不存在的结果中选择 *。但我不知道该怎么做。我很感激帮助。