Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Duplicate Detection at Scale

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

Your question is SQL Duplicate Detection at Scale. 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

SAS Customer Intelligence 360 receives event data from multiple ingestion channels. Write a PostgreSQL query that identifies repeated event records in the customer_events table, which may contain millions of rows.

Treat rows with the same customer_id, event_date, event_type, and event_amount as one business event. The record_id and ingested_at values identify individual ingested copies.

Requirements

  1. Return every row belonging to a duplicate business-event group, including the first-ingested copy.
  2. Show the number of records in each duplicate group and rank records by ingested_at, with record_id as a tie-breaker.
  3. Label the earliest copy as original and later copies as duplicate.
  4. Use a CTE and window functions. The query must retain groups where nullable business-key columns have matching NULL values.

Schema

customer_events
ColumnTypeDescription
record_idPKBIGINTUnique ingested record identifier
customer_idVARCHAR(20)SAS customer identifier
event_dateDATEDate associated with the event
event_typeVARCHAR(40)Event category
event_amountNUMERIC(12,2)Amount associated with the event
ingested_atTIMESTAMPTimestamp when the record entered the platform
source_systemVARCHAR(30)Originating ingestion channel
Tablescustomer_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results