Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Deduplicate Transactional Records
00:00
5 left

Deduplicate Transactional Records

MediumSQL · PostgreSQL

Problem

How would you write a query to identify and remove duplicate records from a transactional table?

Assume records are duplicates when they share the same transaction reference, account, date, amount, and status. Retain the record with the smallest transaction ID and remove later copies.

Output

  1. Return each deleted duplicate record with its transaction ID and duplicate-defining fields.
  2. Include only records removed by the query. No specific output ordering is required.

Schema

transactions
ColumnTypeDescription
transaction_idPKINTEGERUnique identifier for the stored transaction record
transaction_refVARCHAR(30)Source transaction reference
account_idINTEGERAccount associated with the transaction
transaction_dateDATEBusiness date of the transaction
amountNUMERIC(12,2)Transaction amount
statusVARCHAR(20)Processing status
created_atTIMESTAMPTimestamp when the record entered the table
Tablestransactions
Interviewer

Your question is Deduplicate Transactional Records. 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.