Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Duplicate Detection Query
00:00
5 left

Duplicate Detection Query

MediumSQL · PostgreSQL

Problem

Write a query to identify duplicates in a large dataset while optimizing for performance.

Treat records with the same source_system, trade_reference, trade_date, and notional as duplicates. NULL values within these columns should be treated as equal duplicate-key values.

Output

  1. One row per duplicated key combination.
  2. Return source_system, trade_reference, trade_date, notional, and duplicate_count.
  3. Sort by duplicate_count descending, then the key columns ascending with NULL values last.

Schema

trade_events
ColumnTypeDescription
event_idPKINTUnique trade event identifier
source_systemVARCHAR(40)System that supplied the trade event
trade_referenceVARCHAR(40)Source trade reference
trade_dateDATETrade business date
notionalNUMERIC(18,2)Trade notional amount
Tablestrade_events
Interviewer

Your question is Duplicate Detection Query. 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.