Menu

How to remove duplicate rows in MySQL?

Given a table in MySQL, how do you remove duplicate rows? Let's see how to solve this with an example and solutions.

Written by Selva Prabhakaran | 2 min read

Problem

Given a table in MySQL, how do you remove duplicate rows?

Input

first_namelast_nameemail
JohnDoejohn.doe@email.com
JaneSmithjane.smith@email.com
JohnDoejohn.doe@email.com
BobJohnsonbob.johnson@email.com
AliceWilliamsalice.williams@email.com
JaneSmithjane.smith@email.com

Try Hands-On: Fiddle

Create Input Table: Gist

Desired Output

first_namelast_nameemail
JohnDoejohn.doe@email.com
JaneSmithjane.smith@email.com
BobJohnsonbob.johnson@email.com
AliceWilliamsalice.williams@email.com

Solution 1:

Using SELECT DISTINCT

sql
    CREATE TABLE employees_no_duplicates AS
    SELECT DISTINCT *
    FROM employees;

Explanation:

To remove duplicate rows from the employees table, you can use the DISTINCT keyword in a SELECT statement to identify unique rows and then insert the results into a new table.

Alternately you can use the DELETE statement to remove duplicates from the original table. Let’s see how to do that.

Solution 2:

Using a SELF JOIN

This approach works if there is an id field which does not have the values duplicated.

sql
    DELETE e1
    FROM employees e1
    JOIN employees e2
    ON  e1.id < e2.id
    AND e1.first_name = e2.first_name
    AND e1.last_name = e2.last_name
    AND e1.email = e2.email;

Output:

idfirst_namelast_nameemail
3JohnDoejohn.doe@email.com
4BobJohnsonbob.johnson@email.com
5AliceWilliamsalice.williams@email.com
6JaneSmithjane.smith@email.com

Try Hands-On: Fiddle

Explanation:

This approach uses a DELETE statement with a self-join to remove duplicate rows from the original table.

It directly modifies the existing table, so be cautious when using this approach, as it permanently removes data.

  1. SQL for Data Science – Level 1
  2. SQL for Data Science – Level 2
  3. SQL for Data Science – Level 3
  1. Introduction to SQL
  2. SQL Window Functons – Made Simple and Easy
  3. SQL Subquery

More SQL Questions

  1. How to split values to multiple rows in SQL?
  2. How to transpose columns to rows in SQL?
  3. How to select first row in each GROUP BY group?
Free Course
Master Core Python — Your First Step into AI/ML

Build a strong Python foundation with hands-on exercises designed for aspiring Data Scientists and AI/ML Engineers.

Start Free Course
Trusted by 50,000+ learners
Related Course
Master SQL — Hands-On
Join 5,000+ students at edu.machinelearningplus.com
Explore Course
Machine Learning Plus
MachineLearningPlus Expert AI/ML Training

Get a Free 30-Min
Guidance Call

Let our ML expert call you back and guide you for free

You're all set!
Tired of tutorials that go nowhere? This video shows you why and what to do instead.
Watch the Free Training
Redirecting in 5 seconds...
No thanks, I'll figure it out myself

Get your Start in AI/ML with the Foundations for Data Science (AI/ML) Course

Enroll for Free
Scroll to Top
Scroll to Top
Course Preview

Machine Learning A-Z™: Hands-On Python & R In Data Science

Free Sample Videos:

Machine Learning A-Z™: Hands-On Python & R In Data Science

Machine Learning A-Z™: Hands-On Python & R In Data Science

Machine Learning A-Z™: Hands-On Python & R In Data Science

Machine Learning A-Z™: Hands-On Python & R In Data Science

Machine Learning A-Z™: Hands-On Python & R In Data Science