位置:首頁 > 軟件操作教程 > 數(shù)據(jù)分析 > SQL > 問題詳情

SQL操作應用——刪除重復數(shù)據(jù)

提問人:ylm發(fā)布時間:2020-09-28

一、具有主鍵的情況
a.具有唯一性的字段id(為唯一主鍵)
delete table
where id not in
(
select max(id) from table group by col1,col2,col3...
)
group by 子句后跟的字段就是你用來判斷重復的條件,如只有col1,
那么只要col1字段內(nèi)容相同即表示記錄相同。

b.具有聯(lián)合主鍵
假設col1+','+col2+','...col5 為聯(lián)合主鍵
select * from table where col1+','+col2+','...col5 in (
select max(col1+','+col2+','...col5) from table
where having count(*)>1
group by col1,col2,col3,col4
)
group by 子句后跟的字段就是你用來判斷重復的條件,
如只有col1,那么只要col1字段內(nèi)容相同即表示記錄相同。

c:判斷所有的字段
select * into #aa from table group by id1,id2,....
delete table
insert into table
select * from #aa

二、沒有主鍵的情況

a:用臨時表實現(xiàn)
select identity(int,1,1) as id,* into #temp from ta
delete #temp
where id not in
(
select max(id) from # group by col1,col2,col3...
)
delete table ta
inset into ta(...)
select ..... from #temp

b:用改變表結構(加一個唯一字段)來實現(xiàn)
alter table 表 add newfield int identity(1,1)
delete 表
where newfield not in
(
select min(newfield) from 表 group by 除newfield外的所有字段
)

alter table 表 drop column newfield 

· 

繼續(xù)查找其他問題的答案?

相關視頻回答
回復(0)
返回頂部