Oracle Lookup Delete duplicate data

Source: Internet
Author: User

SQL statement for querying and deleting duplicate records1, look for redundant records in the table, duplicate records are based on a single field (ID) to determineselect * FROM table where Id in (select ID from table group Byid have count (Id) > 1) 2, delete redundant records in the table, duplicate records are based on a single field (ID) to judge, leaving only the smallest rowID recordsDELETE from table WHERE (ID) in (the 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. Find redundant duplicate records (multiple fields) in the table SELECT * FROM Table a WHERE (A.ID,A.SEQ) in (Select Id,seq from table group by ID,SEQ have count (*) > 1)4. Delete extra duplicate records (multiple fields) in the table, leaving only the record with ROWID minimumDelete 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)5. Find redundant duplicate records (multiple fields) in the table, not including the smallest ROWID recordsSELECT * 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 Lookup Delete duplicate data

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.