Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Deduplicating Without Breaking Keys
00:00
5 left

Deduplicating Without Breaking Keys

MediumSQL · PostgreSQL

Problem

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

Treat rows with identical values in source_system, external_record_id, event_type, and payload as duplicates. Retain the row with the smallest staging_id for each duplicate set, and remove the other rows.

Output

  1. Return the deleted rows with staging_id, source_system, external_record_id, event_type, and payload.
  2. Sort the returned rows by staging_id ascending.

Schema

robotics_staging
ColumnTypeDescription
staging_idPKINTEGERUnique identifier for the staged record
source_systemVARCHAR(40)System that produced the incoming record
external_record_idVARCHAR(40)Identifier assigned by the source system
event_typeVARCHAR(30)Type of robotics event
payloadTEXTRaw staged event payload
Tablesrobotics_staging
Interviewer

Your question is Deduplicating Without Breaking Keys. 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.