如何删除表中的重复记录?

王朝mssql·作者佚名  2006-12-17
宽屏版  字体: |||超大  

如何删除表中的重复记录?

如何删除表中的重复记录? --测试数据

/*-----------------------------

select * from tt

-----------------------------*/

id pid

----------- -----------

1 1

1 1

2 2

3 3

3 3

3 3

(所影响的行数为 6 行)

首先,如何查询table中有重复记录

select *,count(1) as rownum

from tt

group by id, pid

having count(1) > 1

id pid rownum

----------- ----------- -----------

1 1 2

3 3 3

(所影响的行数为 2 行)

方法一:使用distinct和临时表

if object_id('tempdb..#tmp') is not null

drop table #tmp

select distinct * into #tmp from tt

truncate table tt

insert into tt select * from #tmp

方法二:添加标识列

alter table tt add NewID int identity(1,1)

go

delete from tt where exists(select 1 from tt a where a.newid>tt.newid and tt.id=a.id and tt.pid=a.pid)

go

alter table tt drop column NewID

go

--测试结果

/*-----------------------------

select * from tt

-----------------------------*/

id pid

----------- -----------

1 1

2 2

3 3

(所影响的行数为 3 行)

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
© 2005- 王朝网络 版权所有