使用Select Query删除Sql表中的重复条目

时间:2018-06-05 15:43:43

标签: sql duplicates

您好我正在尝试从下表中删除重复的“名称”条目。 我已经尝试了计数(名称),但似乎仍然无法删除副本。

我该怎么办呢?

enter image description here

1 个答案:

答案 0 :(得分:0)

使用subquery

select t.*
from table t
where id1 = (select top 1 id1
             from table t1 
             where t1.name  = t.name
             order by t1.id2
            );