Menu

How to find duplicate values in SQL Table?

Let's see how to find duplicate values in an SQL table.

Written by Selva Prabhakaran | 2 min read

Problem

Let’s see how to find duplicate values in an SQL table.

Input

idnameenrollment_number
1AliceENR123
2BobENR124
3CharlieENR125
4DavidENR123
5EdwardENR126
6FrankENR124

Try Hands-On: Fiddle

Create Source tables: Code Gist

Desired Output

enrollment_numbercount
ENR1232
ENR1242

Solution 1:

Using GROUP BY

sql
SELECT enrollment_number, COUNT(enrollment_number) as count
FROM students
GROUP BY enrollment_number
HAVING count >1;

Explanation:

  • GROUP BY enrollment_number: This will create groups of rows based on unique enrollment_number values.

  • HAVING count >1: This is a post-grouping filter that allows us to only consider those groups where the count of enrollment_number is more than 1. Hence, it filters the groups to show only the duplicates.

  • COUNT(enrollment_number) as count: This will count the number of occurrences of each enrollment_number in the grouped result.

Solution 2:

Using correlated subquery

sql
SELECT name, enrollment_number
FROM students
WHERE enrollment_number IN (
    SELECT enrollment_number 
    FROM students 
    GROUP BY enrollment_number
    HAVING COUNT(enrollment_number) > 1
);

Result:

nameenrollment_number
AliceENR123
BobENR124
DavidENR123
FrankENR124

Explanation:

The inner query (subquery) selects all the enrollment_numbers that have a count greater than 1, thus identifying duplicates.

The outer query then filters the main table, students, to show only rows where the enrollment_number matches one from the list identified as duplicates in the subquery.

  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 concatenate multiple rows into one field in MySQL?
  2. How to efficiently convert rows to columns in SQL?
  3. How to transpose columns to rows in SQL?
  4. 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
Before you go...

Get Your Free AI/ML Engineer Roadmap

The step-by-step path used by 25,000+ learners to go from zero to career-ready in AI/ML.

🔒 100% Free ☕ No spam, ever ✓ Instant delivery
Your roadmap is on the way to your inbox

Want help choosing the right AI/ML path?

Book a free 30-minute guidance call and our team will help you understand where to start based on your current skills and career goals.

Get a free guidance call
🇮🇳 +91
Thank you for your submission!
Our team will call you shortly. You'll also receive a confirmation on your email.
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