SQL去除重复记录(七种)
话不多说,请看代码:
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
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持脚本之家!
相关文章
MSSQL中删除用户时数据库主体在该数据库存中拥有架构 无法删除的解决方法
在ms sql2005 下面删除一个数据库的用户的时候提示 数据库主体在该数据库中拥有架构,无法删除的错误解决方案2013-08-08
解决连接Sql Server时报错:无法通过使用安全套接字层加密与SQL Server建立安全连接
这篇文章主要给大家介绍了关于解决连接Sql Server时报错:无法通过使用安全套接字层加密与SQL Server建立安全连接的相关资料,需要的朋友可以参考下2024-01-01
SQLSERVER中union,cube,rollup,cumpute运算符使用说明
union,cube,rollup,cumpute运算符的使用技巧。2009-09-09
SQL SERVER 2000 9003错误的解决方法(只适用于SQL2000)
"无法打开新数据库 'POS'。CREATE DATABASE 中止。 (Microsoft SQL Server,错误: 9003)"看是9003错误,怎么解决呢,下面小编给大家分享SQL SERVER 2000 9003错误的解决方法(只适用于SQL2000),一起看看吧2016-09-09


最新评论