Oracle deletes duplicate data only one message is left

Source: Internet
Author: User

SQL statements for querying and deleting duplicate records   reprinted from: HTTP://WWW.CNBLOGS.COM/252E/ARCHIVE/2012/09/13/2682817.HTML1, redundant duplicate records in lookup tables, Duplicate records are based on a single field (ID) to determine  select * from table where Id in (select ID from table group Byid have count (id) > 1)  2, delete redundant duplicates in table Records, duplicate records are judged by a single field (ID), leaving only the rowid smallest record  delete from table WHERE (ID) in (SELECT ID from table GROUP by Id has COUNT (ID) > 1) and ROWID not in (SELECT MIN (ROWID) from table GROUP by ID have COUNT (*) > 1);  3, redundant duplicate records in lookup table (multiple fields)  select * From Table A where (A.ID,A.SEQ) in (Select Id,seq from table group by ID,SEQ have count (*) > 1)  4, delete redundant duplicate records (multiple fields) in the table, leaving only RO WID minimum record  delete from Table A where (A.ID,A.SEQ) in (Select Id,seq from table group by ID,SEQ have count (*) > 1) and Rowi D Not in (select min (rowid) from table group by ID,SEQ have Count (*) >1)  5, redundant duplicate records in lookup table (multiple fields), with no rowid minimum records  sele CT * FROM Table A WHERE (A.ID,A.SEQ) in (Select Id,seq from table group by ID,SEQ have count (*) > 1) and rowID not in (select Min (rowid) from table group by ID,SEQ have count (*) >1)

Oracle deletes duplicate data only one line

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.