数据库表中重复记录的删除方法

    文章来源:万象互联 更新时间:2012-11-13 17:17:04
分享:

我们先从以下例子来分析
--测试数据
/*-----------------------------
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(chr(32)tempdb..#tmpchr(32)) 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 行)

版权说明:本站原创文章,由万象互联SEO优化发表.
本文地址:https://www.hulian.top/help/193.html
在线咨询
  • 在线时间
  • 8:00-21:00