MySQL data duplicate checking and deduplication implementation statements

MySQL data duplicate checking and deduplication implementation statements

There is a table user, and the fields are id, nick_name, password, email, and phone.

1. Single field (nick_name)

Find all records with duplicate records

select * from user where nick_name in (select nick_name from user group by nick_name having count(nick_name)>1);

Find the record with the largest ID in each record group with duplicate records

select * from user where id in (select max(id) from user group by nick_name having count(nick_name)>1);

Find out the redundant records, but not the record with the smallest id

select * from user where nick_name in (select nick_name from user group by nick_name having count(nick_name)>1) and id not in (select min(id) from user group by nick_name having count(nick_name)>1);

Delete redundant duplicate records and keep only the record with the smallest id

delete from user where nick_name in (select nick_name from (select nick_name from user group by nick_name having count(nick_name)>1) as tmp1) and id not in (select id from (select min(id) from user group by nick_name having count(nick_name)>1) as tmp2);

2. Multiple fields (nick_name, password)

Find all the records with duplicate records

select * from user where (nick_name,password) in (select nick_name,password from user group by nick_name,password where having count(nick_name)>1);
 

Find the record with the largest ID in each record group with duplicate records

select * from user where id in (select max(id) from user group by nick_name,password where having count(nick_name)>1);

Find the redundant records in each duplicate record group, but do not find the one with the smallest ID.

select * from user where (nick_name,password) in (select nick_name,password from user group by nick_name,password having count(nick_name)>1) and id not in (select min(id) from user group by nick_name,password having count(nick_name)>1);

Delete redundant duplicate records and keep only the record with the smallest id

delete from user where (nick_name,password) in (select nick_name,password from (select nick_name,password from user group by nick_name,password having count(nick_name)>1) as tmp1) and id not in (select id from (select min(id) id from user group by nick_name,password having count(nick_name)>1) as tmp2);

The above is the detailed content of the implementation statements for MySQL data duplication checking and deduplication. For more information about MySQL data duplication checking and deduplication, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • MySQL development skills: JOIN update and data duplication check/deduplication
  • One sql statement completes MySQL deduplication and keeps one
  • MySQL deduplication methods
  • A brief discussion on deduplication in SQL database
  • A small example of SQL grouping and sorting to remove duplicates
  • Detailed explanation of two methods of deduplication in MySQL and example code
  • A practical record of how to check and remove duplicate SQL

<<:  A brief analysis of Linux resolv.conf

>>:  Various correct postures for using environment variables in Webpack

Recommend

WeChat applet to save albums and pictures to albums

I am currently developing a video and tool app, s...

Why MySQL does not recommend using subqueries and joins

To do a paginated query: 1. For MySQL, it is not ...

How to start multiple MySQL instances in CentOS 7.0 (mysql-5.7.21)

Configuration Instructions Linux system: CentOS-7...

6 Ways to Elegantly Handle Objects in JavaScript

Table of contents Preface 1. Object.freeze() 2. O...

Xhtml special characters collection

nbsp &#160; no-break space = non-breaking spa...

What should I do if I can't view the source file of a web page?

Q: Whether using Outlook or IE, when you right-cl...

Introduction to RHCE bridging, password-free login and port number modification

Table of contents 1. Configure bridging and captu...

Docker builds python Flask+ nginx+uwsgi container

Install Nginx First pull the centos image docker ...

Docker installation and configuration steps for Redis image

Table of contents Preface environment Install Cre...

Tips for viewing History records and adding timestamps in Linux

Tips for viewing History records and adding times...

Web Design Tutorial (7): Improving Web Design Efficiency

<br />Previous article: Web Design Tutorial ...

Detailed explanation of importing/exporting MySQL data in Docker container

Preface We all know that the import and export of...

HTML form tag usage learning tutorial

Forms in HTML can be used to collect various type...

Detailed description of shallow copy and deep copy in js

Table of contents 1. js memory 2. Assignment 3. S...