SQL:刪除表中重複的記錄

 

/**
**刪除表中的重複記錄
**@author zdw
** 2008 11.03 17:30
*
*/


--建立測試表
if object_id('test'is not null 
  
drop table test

create table test
(
 id 
int identity(1,1primary key,
 name 
varchar(50)
)

--插入幾條測試數據
insert into test select 'a' union all
select 'a' union all
select 'a' union all
select 'a' union all
select 'a' union all
select 'a' union all
select 'b' union all
select 'b' union all 
select 'b' union all 
select 'b' union all 
select 'b' union all 
select 'b' union all
select 'b' union all
select 'c' union all 
select 'c' union all 
select 'c' union all 
select 'd' union all 
select 'd'

--查看當前記錄
select * from test

if object_id('#'is not null 
  
drop table #
--注意(是單個字段的不一樣仍是多個字段,這裏是name)
select distinct (name) into # from test
--查看新表中的數據
select * from #
--清空舊錶
truncate table test
--將新表中的數據插入到舊錶
insert test select * from #
--刪除新表
drop table #
--查看結果
select * from test





ide

csdn上秒到的一些方法:
測試

1、查找表中多餘的重複記錄,重複記錄是根據單個字段(peopleId)來判斷 
select * from people 
where peopleId in (select  peopleId  from  people  group  by  peopleId  having  count(peopleId) > 1

2、刪除表中多餘的重複記錄,重複記錄是根據單個字段(peopleId)來判斷,只留有rowid最小的記錄 
delete from people 
where peopleId  in (select  peopleId  from people  group  by  peopleId  having  count(peopleId) > 1
and rowid not in (select min(rowid) from  people  group by peopleId  having count(peopleId )>1

3、查找表中多餘的重複記錄(多個字段) 
select * from vitae a 
where (a.peopleId,a.seq) in  (select peopleId,seq from vitae group by peopleId,seq  having count(*> 1

4、刪除表中多餘的重複記錄(多個字段),只留有rowid最小的記錄 
delete from vitae a 
where (a.peopleId,a.seq) in  (select peopleId,seq from vitae group by peopleId,seq having count(*> 1
and rowid not in (select min(rowid) from vitae group by peopleId,seq having count(*)>1

5、查找表中多餘的重複記錄(多個字段),不包含rowid最小的記錄 
select * from vitae a 
where (a.peopleId,a.seq) in  (select peopleId,seq from vitae group by peopleId,seq having count(*> 1
and rowid not in (select min(rowid) from vitae group by peopleId,seq having count(*)>1

比方說在A表中存在一個字段「name」,並且不一樣記錄之間的「name」值有可能會相同, 
如今就是須要查詢出在該表中的各記錄之間,「name」值存在重複的項; 
Select Name,Count(*From A Group By Name Having Count(*> 1 

若是還查性別也相同大則以下: 
Select Name,sex,Count(*From A Group By Name,sex Having Count(*> 1spa


還有什麼好的解決方法,請你們一塊兒分享。 .net

相關文章
相關標籤/搜索