嗨,伴侣
我有一个数据库表,如下所示:
uniqueId,asin,rank
1,abc,1
2,xyz,2
3,abc,1
4,xyz,2
5,opq,3
您可以看到重复了asin(abc和xyz)。因此,我希望我的查询避免它们完整,只给我(opq)。
最好的问候
Usama
答案 0 :(得分:2)
我认为您需要
select *
from yourtable a
where 1 = (
select count(*)
from yourtable
where a.asin = asin
)
答案 1 :(得分:0)
not exists
应该具有最佳性能:
select t.*
from t
where not exists (select 1
from t t2
where t2.asin = t.asin and t2.id <> t.id
);
为了提高性能,您希望在(asin, id)
上建立索引。