Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Deduplication Strategy

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

Your question is SQL Deduplication Strategy. 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 SQL to find duplicate records and remove them while keeping the latest row per key.

Use the records table. Treat source_system and record_key together as the logical key. The latest row has the greatest updated_at; break timestamp ties by the greatest id.

Output

  1. Return the deleted rows with columns id, source_system, record_key, updated_at, and payload.
  2. Sort deleted rows by id ascending.

Schema

records
ColumnTypeDescription
idPKINTUnique row identifier
source_systemVARCHAR(50)System that supplied the record
record_keyVARCHAR(100)External logical key used for deduplication
updated_atTIMESTAMPTimestamp of the latest source update
payloadTEXTRecord content
Tablesrecords
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results