當前位置:首頁 » 編程語言 » oraclesql刪除重復

oraclesql刪除重復

發布時間: 2025-01-24 05:01:12

❶ oracle資料庫怎麼刪除重復數據只留一個

查詢及刪除重復記錄的SQL語句
1、查找表中多餘的重復記錄,重復記錄是根據單個欄位(Id)來判斷 ;
select * from 表 where Id in (select Id from 表 group byId having count(Id) > 1)
2、刪除表中多餘的重復記錄,重復記錄是根據單個欄位(Id)來判斷,只留有rowid最小的記錄;
DELETE from 表 WHERE (id) IN ( SELECT id FROM 表 GROUP BY id HAVING COUNT(id) > 1) AND ROWID NOT IN (SELECT MIN(ROWID) FROM 表 GROUP BY id HAVING COUNT(*) > 1);
3、查找表中多餘的重復記錄(多個欄位);
select * from 表 a where (a.Id,a.seq) in(select Id,seq from 表 group by Id,seq having count(*) > 1)
4、刪除表中多餘的重復記錄(多個欄位),只留有rowid最小的記錄;
delete from 表 a where (a.Id,a.seq) in (select Id,seq from 表 group by Id,seq having count(*) > 1) and rowid not in (select min(rowid) from 表 group by Id,seq having count(*)>1)
5、查找表中多餘的重復記錄(多個欄位),不包含rowid最小的記錄;
select * from 表 a where (a.Id,a.seq) in (select Id,seq from 表 group by Id,seq having count(*) > 1) and rowid not in (select min(rowid) from 表 group by Id,seq having count(*)>1)

❷ oracle某個欄位有重復數據,如何刪除多餘數據只保留1條

1、查找表中多餘的重復記錄,重復記錄是根據單個欄位(peopleId)來判斷。

熱點內容
vpn搭建linux 發布:2025-07-16 11:55:37 瀏覽:520
建模編程待遇 發布:2025-07-16 11:49:51 瀏覽:634
虛擬伺服器如何開店 發布:2025-07-16 11:32:28 瀏覽:298
C語言考過 發布:2025-07-16 11:32:17 瀏覽:89
linux桌面系統排名 發布:2025-07-16 11:29:14 瀏覽:777
編譯桌面布局 發布:2025-07-16 11:22:48 瀏覽:857
mc怎麼免費開伺服器網易版 發布:2025-07-16 11:22:36 瀏覽:272
php字元串數組替換 發布:2025-07-16 11:00:08 瀏覽:470
java詞雲 發布:2025-07-16 10:56:22 瀏覽:633
手機h5上傳圖片 發布:2025-07-16 10:49:49 瀏覽:878