How to delete duplicate records in an Oracle database

Source: Internet
Author: User

I read something about the Oracle database because of some database problems.

For records in a table in an Oracle database, how can we delete repeated values. I will keep a record of my practices for future reference. The data I use is oracle.

Suppose there is a table

Create table test (name varchar2 (255), pass varchar2 (255 ));

What should I do if the database has multiple rows of duplicate records. I checked the information. Some people say that there are many methods to use a temporary table. For an oracle database, it has a rowid, which will never be repeated. We can use this to process repeated records.

Delete from test t where t. rowid not in (
Select c. r from (
Select distinct z. name, min (z. rowid) r from test z group by z. name
) C
)

In this way, the rowid is large and the record duplicate value is deleted. Of course, this can also be used to delete duplicate records in a single column in a database table.

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.