如何避免所有出现重复的记录并仅获得唯一记录?

时间:2018-06-25 05:02:00

标签: mysql sql database

嗨,伴侣

我有一个数据库表,如下所示:

uniqueId,asin,rank
1,abc,1
2,xyz,2
3,abc,1
4,xyz,2
5,opq,3

您可以看到重复了asin(abc和xyz)。因此,我希望我的查询避免它们完整,只给我(opq)。

最好的问候

Usama

2 个答案:

答案 0 :(得分:2)

我认为您需要

select *
from yourtable a
where 1 = (
  select count(*)
  from yourtable
  where a.asin = asin
)

Demo

答案 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)上建立索引。