Oracle利用rowid刪除表中重複記錄

來源:互聯網
上載者:User

Oracle利用rowid刪除表中重複記錄

 

先看錶myemp

 

查出有重複資料的記錄

 

查出沒有重複資料的記錄

 

查出不重複的記錄

 

或者

select * from myemp e where rowid = (select max(rowid) from myemp e2 where e.userid = e2.userid and e.username = e2.username and e.salary = e2.salary)

 

 

如何重複資料刪除資料

1、 
當有大量重複資料存在並且在列userid,username,salary上有索引的情況下

delete myemp where rowid not in (select max(rowid) from myemp group by userid,username,salary);

2、 適用於少量重複資料的情況(當有大量資料時,效率很低)

delete myemp e where rowid <> (select max(rowid) from myemp e2 where e.userid = e2.userid and e.username = e2.username and e.salary = e2.salary);

3、 exception方法,適合大量重複資料的情況

首先建立exception表

 

然後添加約束,將錯誤記錄到表exceptions中

 

建立重複資料暫存資料表

 

刪除有重複的所有資料

 

將暫存資料表中的非重複資料重新插入原表

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.