SQL去除重复记录(七种)

Ursula ·
更新时间:2024-09-20
· 730 次阅读

话不多说,请看代码:

if not object_id('Tempdb..#T') is null drop table #T Go Create table #T([ID] int,[Name] nvarchar(1),[Memo] nvarchar(2)) Insert #T select 1,N'A',N'A1' union all select 2,N'A',N'A2' union all select 3,N'A',N'A3' union all select 4,N'B',N'B1' union all select 5,N'B',N'B2' Go

--I、Name相同ID最小的记录(推荐用1,2,3),保留最小一条

方法1:

delete a from #T a where  exists(select 1 from #T where Name=a.Name and ID<a.ID)

方法2:

delete a from #T a left join (select min(ID)ID,Name from #T group by Name) b on a.Name=b.Name and a.ID=b.ID where b.Id is null

方法3:

delete a from #T a where ID not in (select min(ID) from #T where Name=a.Name)

方法4(注:ID为唯一时可用):

delete a from #T a where ID not in(select min(ID)from #T group by Name)

方法5:

delete a from #T a where (select count(1) from #T where Name=a.Name and ID<a.ID)>0

方法6:

delete a from #T a where ID<>(select top 1 ID from #T where Name=a.name order by ID)

方法7:

delete a from #T a where ID>any(select ID from #T where Name=a.Name) select * from #T 您可能感兴趣的文章:解析mysql中:单表distinct、多表group by查询去除重复记录sqlserver 用户权限管理,LINQ去除它的重复菜单项sqlserver利用存储过程去除重复行的sql语句mysql SELECT语句去除某个字段的重复信息Mysql删除重复的数据 Mysql数据去重复MySQL中distinct语句去查询重复记录及相关的性能讨论SQL高级应用之同服务器上复制表到另一数据库中并实现去重复SQL分组排序去重复的小实例oracle sql 去重复记录不用distinct如何实现SQL语句去掉重复记录,获取重复记录



SQL

需要 登录 后方可回复, 如果你还没有账号请 注册新账号
相关文章