如何用“仅否”查找值

时间:2018-06-25 12:00:57

标签: sql sql-server

我有一个这样的数据集,其中A,B是一组,而C,D,E是另一组。

enter image description here

我想过滤出所有条目为的数据。例如应该只返回C,D,E而不返回B。

1 个答案:

答案 0 :(得分:1)

如果要过滤,则可以使用NOT EXISTS

select t.*
from table t
where not exists (select 1 from table t1 where t1.id = t.id and t1.status = 'no');