Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Finding Duplicate Records
00:00
5 left

Finding Duplicate Records

EasySQL · PostgreSQL

Problem

Bismart's customer master table may contain repeated email addresses from multiple imports. Write a SQL query to identify duplicate email values in the customers table.

Requirements

  1. Return each email that appears more than once.
  2. Include the number of rows for each duplicate email.
  3. Sort the result by duplicate count descending, then by email ascending.

Schema

customers
ColumnTypeDescription
customer_idPKINTPrimary key for each customer record
full_nameVARCHAR(100)Customer name
emailVARCHAR(255)Customer email address, may contain duplicates or NULL
created_atDATERecord creation date
Tablescustomers
Interviewer

Your question is Finding Duplicate 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.