Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Remove Duplicates Keeping Latest
00:00
5 left

Remove Duplicates Keeping Latest

MediumSQL · PostgreSQL

Problem

Write a SQL query to remove duplicates while keeping the latest record.

Treat rows with the same email as duplicates. Keep the row with the greatest updated_at; if timestamps tie, keep the row with the greatest contact_id. Rows with a NULL email are considered duplicates of one another.

Output

  1. Return each deleted row with contact_id, email, and updated_at.
  2. Order deleted rows by email ascending with NULL values last, then updated_at descending and contact_id descending.

Schema

customer_contacts
ColumnTypeDescription
contact_idPKINTUnique contact record identifier
emailVARCHAR(255)Contact email address used to identify duplicates
contact_nameVARCHAR(150)Contact display name
updated_atTIMESTAMPTime when the contact record was last updated
Tablescustomer_contacts
Interviewer

Your question is Remove Duplicates Keeping Latest. 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.