Mysql delete duplicate data to keep the smallest id solution

Mysql delete duplicate data to keep the smallest id solution

Search online to delete duplicate data and keep the data with the smallest ID. The method is as follows:

DELETE
FROM
  people
WHERE
  peopleName IN (
    SELECT
      peopleName
    FROM
      people
    GROUP BY
      peopleName
    HAVING
      count(peopleName) > 1
  )
AND peopleId NOT IN (
  SELECT
    min(peopleId)
  FROM
    people
  GROUP BY
    peopleName
  HAVING
    count(peopleName) > 1
)

When I use it myself, an error message is displayed:

delete from tb where id in (SELECT max(id) from tb GROUP BY user HAVING count(user)>1)

[Err] 1093 - You can't specify target table 'XXX' for update in FROM clause

It is not known what caused it yet.

Then find a way to distribute the operation. First, filter out the data with duplicate users, and then use max() to select the larger row:

SELECT max(id) from tb GROUP BY user HAVING count(user)>1

Then delete the redundant data one by one according to the obtained max(id)

delete from tb where id=xx

This is a stupid method, let’s solve the problem temporarily.

Summarize

The above is the solution for Mysql to delete duplicate data and retain the smallest ID introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time!

You may also be interested in:
  • Example and analysis of MySQL clearing data tables
  • MySQL query duplicate data (delete duplicate data and keep the one with the smallest id as the only data)
  • Detailed explanation of how to find and delete duplicate data in MySQL and keep only one example
  • Mysql implements regular clearing of old data in a table and retaining several pieces of data (recommended)

<<:  How to get the real path of the current script in Linux

>>:  Analysis of CocosCreator's new resource management system

Recommend

React implementation example using Amap (react-amap)

The PC version of React was refactored to use Ama...

Vue implements two-way data binding

This article example shares the specific code of ...

Solve nginx "504 Gateway Time-out" error

Students who make websites often find that some n...

How to use the Linux nl command

1. Command Introduction nl (Number of Lines) adds...

Four solutions for using setTimeout in JS for loop

Table of contents Overview Solution 1: Closures S...

Detailed explanation of linux crm deployment code

Linux basic configuration Compile and install pyt...

Best Practices Guide for Storing Dates in MySQL

Table of contents Preface Do not use strings to s...

Node script realizes automatic sign-in and lottery function

Table of contents 1. Introduction 2. Preparation ...

Tutorial on how to quickly deploy clickhouse using docker-compose

ClickHouse is an open source column-oriented DBMS...

Analyzing the four transaction isolation levels in MySQL through examples

Preface In database operations, in order to effec...

Detailed explanation of docker command to backup linux system

tar backup system sudo tar cvpzf backup.tgz --exc...

Detailed process of installing Presto and connecting Hive in Docker

1. Introduction Presto is an open source distribu...

HTML basic summary recommendation (title)

HTML: Title Heading is defined by tags such as &l...

Self-study of MySql built-in functions knowledge points summary

String functions Check the ascii code value of th...

Vue implements simple slider verification

This article example shares the implementation of...