Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Duplicate Detection

MediumSQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is SQL Duplicate Detection. Start with the requirements and the one table on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

Euronet Worldwide needs to identify duplicate customer profiles in its customer master table before downstream payment and transfer workflows use the wrong record. Write a SQL query to find all duplicated profiles based on the same first name, last name, and date of birth.

Requirements

  1. Return each duplicate profile group once, with the shared identifying fields.
  2. Include a duplicate_count showing how many rows share that profile.
  3. Only return groups with more than one row.
  4. Sort results by duplicate_count descending, then by name.

Schema

customer_profiles
ColumnTypeDescription
customer_idPKINTPrimary key for the profile record
first_nameVARCHAR(100)Customer first name
last_nameVARCHAR(100)Customer last name
date_of_birthDATECustomer date of birth
emailVARCHAR(255)Contact email, may be NULL
created_atTIMESTAMPRecord creation timestamp
Tablescustomer_profiles
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results