标签: sql duplicates
您好我正在尝试从下表中删除重复的“名称”条目。 我已经尝试了计数(名称),但似乎仍然无法删除副本。
我该怎么办呢?
答案 0 :(得分:0)
使用subquery:
subquery
select t.* from table t where id1 = (select top 1 id1 from table t1 where t1.name = t.name order by t1.id2 );