日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > 数据库 >内容正文

数据库

oracle sql删除重复,【转帖】SQL Oracle删除重复记录

發布時間:2025/3/20 数据库 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 oracle sql删除重复,【转帖】SQL Oracle删除重复记录 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1.Oracle刪除重復記錄.

刪除表中多余的重復記錄,重復記錄是根據單個字段(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)

刪除表中多余的重復記錄(多個字段),只留有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)

================================

此方法可以適用于sql ,oracle

declare @max integer,@id integer

declare cur_rows cursor local for select 主字段,count(*) from 表名 group by 主字段 having count(*) >; 1

open cur_rows

fetch cur_rows into @id,@max

while @@fetch_status=0

begin

select @max = @max -1

set rowcount @max

delete from 表名 where 主字段 = @id

/*

DECLARE @count INT

SELECT @count = COUNT(*) from [table1] WHERE [column1] = 1

DELETE TOP (@count-1) from [table1] WHERE [column1] = 1? 這個top后面一定要有括號

*/

fetch cur_rows into @id,@max

end

close cur_rows

set rowcount 0

=======================================

select distinct * into #Tmp from tableName

drop table tableName

select * into tableName from #Tmp

drop table #Tmp

select identity(int,1,1) as autoID, * into #Tmp from tableName

select min(autoID) as autoID into #Tmp2 from #Tmp group by Name,autoID

select * from #Tmp where autoID in(select autoID from #tmp2)

=======================================

select identity(int,1,1) as id ,name,state into #tempTable from a

delete from a

delete from #tempTable

where id not in

(

select min(id) from #tempTable group by name

)

insert into a( name,state)

select name,state from #tempTable

drop table #tempTable

本文來自CSDN博客,出處:http://b

《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀

總結

以上是生活随笔為你收集整理的oracle sql删除重复,【转帖】SQL Oracle删除重复记录的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。