Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Duplicate Record Cleanup

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

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

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
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results