标签: sql sql-server
我有一个这样的数据集,其中A,B是一组,而C,D,E是另一组。
我想过滤出所有条目为是的数据。例如应该只返回C,D,E而不返回B。
答案 0 :(得分:1)
如果要过滤,则可以使用NOT EXISTS:
NOT EXISTS
select t.* from table t where not exists (select 1 from table t1 where t1.id = t.id and t1.status = 'no');