Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Remove Duplicates Without Dropping
00:00
5 left

Remove Duplicates Without Dropping

MediumSQL · PostgreSQL

Problem

Write a SQL query to identify and remove duplicate records from a staging table without dropping the table.

Treat rows as duplicates when source_system, subscriber_id, event_type, event_timestamp, and payload match, including matching NULL values. Retain the row with the smallest staging_id for each duplicate set.

Output

  1. Return one row for every deleted record.
  2. Include staging_id, source_system, subscriber_id, event_type, event_timestamp, and payload.
  3. Order deleted records by staging_id ascending.

Schema

staging_events
ColumnTypeDescription
staging_idPKINTUnique identifier for the staging row
source_systemVARCHAR(50)System that produced the record
subscriber_idVARCHAR(30)Subscriber identifier from the source system
event_typeVARCHAR(40)Type of subscriber or network event
event_timestampTIMESTAMPTimestamp supplied by the source system
payloadTEXTRaw event payload
Tablesstaging_events
Interviewer

Your question is Remove Duplicates Without Dropping. 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.