Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Duplicate Customer Records
00:00
5 left

SQL for Duplicate Customer Records

MediumSQL · PostgreSQL

Problem

Write a SQL query to identify duplicate records in a customer database.

Treat customer records as duplicates when their non-empty email addresses match after trimming surrounding whitespace and ignoring letter case. Return every record belonging to a duplicate email group.

Output

  1. One row per duplicate customer record
  2. Columns: record_id, full_name, email, and duplicate_count
  3. Order by normalized email address, then record_id ascending

Schema

customer_records
ColumnTypeDescription
record_idPKINTUnique customer record identifier
full_nameVARCHAR(100)Customer's full name
emailVARCHAR(255)Customer email address
phoneVARCHAR(30)Customer phone number
created_atDATEDate the customer record was created
Tablescustomer_records
Interviewer

Your question is SQL for Duplicate Customer Records. Start with the requirements and the one table in the Question tab.

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.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.