Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Duplicate Record Cleanup
00:00
5 left

SQL Duplicate Record Cleanup

MediumSQL · PostgreSQL

Problem

Write a SQL query to identify and eliminate duplicate records within a highly transactional database table.

Treat rows with the same account, event details, amount, reference, and source as duplicates. Retain the row with the lowest transaction_id and remove later copies. The query should return the records that it removed.

Output

  1. One row per deleted duplicate
  2. Columns: deleted_transaction_id, account_id, event_type, event_timestamp, amount, external_reference, and source_system
  3. Include only removed records; no ordering is required

Schema

transaction_events
ColumnTypeDescription
transaction_idPKINTUnique transaction record identifier
account_idINTCustomer account identifier
event_typeVARCHAR(30)Transaction event classification
event_timestampTIMESTAMPTimestamp when the transaction event occurred
amountNUMERIC(12,2)Transaction amount
external_referenceVARCHAR(60)Reference supplied by the originating system
source_systemVARCHAR(40)System that generated the transaction
Tablestransaction_events
Interviewer

Your question is SQL Duplicate Record Cleanup. 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.