您好,欢迎来到中国名创! [请登录] [免费注册] [忘记密码]

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

时间:2015-05-20 14:24来源:中国名创
 对于数据库表中的重复记录,如何删除,下面来演示
我们先从以下例子来分析
--测试数据
/*-----------------------------
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 行)
中国名创www.chuang.top 整理发布。
------分隔线----------------------------
相关文章:
数据库标准常用SQL语句
关于MSSQL和Access数据库的数据传输
MSSQL2000数据库Asp.net连接例程
Access数据库Asp.net连接方法
MSSQL数据库使用ASP.NET连接调用方法
Access数据库如何升级到MSSQL2005数
sql server 2000数据库使用MDF文件恢
JSP空间如何连接MYSQL数据库
推荐内容