SQL Server中删除反复数据的几个办法[MSSQL防范]
本文“SQL Server中删除反复数据的几个办法[MSSQL防范]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
数据库的利用历程中由于程序方面的问题有时刻会碰到反复数据,反复数据招致了数据库部份设置不能精确设置……
办法一 :
declare @max integer,@id integer
declare cur_rows cursor local for select 主字段,count(*) from 表名 group by 主字段 having count(*) > 1
open cur_rows
fetch cur_rows into @id,@max
while fetch_status=0
begin
select @max = @max -1
set rowcount @max
delete from 表名 where 主字段 = @id
fetch cur_rows into @id,@max
end
close cur_rows
set rowcount 0
办法二 :
有两个意义上的反复记录,一是完好反复的记录,也即全部字段均反复的记录,二是部份关键字段反复的记录,比方Name字段反复,而其他字段不一定反复或都反复可以忽视.
1、关于第一种反复,对比简单办理,利用
select distinct * from tableName
便可以得到无反复记录的后果集.
假如该表需求删除反复的记录(反复记录保存1条),可以按以下办法删除
select distinct * into #Tmp from tableName
drop table tableName
select * into tableName from #Tmp
drop table #Tmp
发生这种反复的缘由是表计划不周产生的,增添唯一索引列便可办理.
2、这类反复问题普通要求保存反复记录中的第一条记录,操作办法以下
假定有反复的字段为Name,Address,要求得到这两个字段唯一的后果集
select identity(int,1,1) as autoID, * into #Tmp from tableName
select min(autoID) as autoID into #Tmp2 from #Tmp group by Name,autoID
select * from #Tmp where autoID in(select autoID from #tmp2)
最后一个select即得到了Name,Address不反复的后果集(但多了一个autoID字段,实际写时可以写在select子句中省去此列)
本文地址: | 与您的QQ/BBS好友分享! |