Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL: Deduplicate Latest Records

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

Your question is SQL: Deduplicate Latest Records. 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

Write a SQL query to find duplicate records in a customer table and keep only the latest record per customer. Use the customer_records table, treating the greatest updated_at value as latest. If timestamps tie, retain the row with the greatest record_id.

Output

  1. Return one row per customer with record_id, customer_id, customer_name, email, updated_at, and duplicate_count.
  2. Include customers with and without duplicates, excluding superseded records.
  3. Order by customer_id ascending.

Schema

customer_records
ColumnTypeDescription
record_idPKINTUnique identifier for the stored customer record
customer_idINTBusiness identifier shared by records for the same customer
customer_nameVARCHAR(150)Customer's full name
emailVARCHAR(255)Customer email address
updated_atTIMESTAMPTZTimestamp when the customer record was last updated
Tablescustomer_records
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results