Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Group By and Having for Duplicates

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

Your question is Group By and Having for Duplicates. Start with the requirements and the two tables 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

Systems Planning and Analysis needs to audit records in its transaction ledger for duplicate business events received from multiple ingestion sources. Write a PostgreSQL query that identifies duplicate transaction groups without relying on the unique transaction_id.

Requirements

  1. Define duplicates as rows sharing account_number, transaction_date, merchant_code, amount, and currency.
  2. Use GROUP BY and HAVING COUNT(*) > 1 to find duplicate groups.
  3. Return the duplicate count, sorted transaction IDs, and distinct source names. Preserve duplicate records whose source_id has no matching source record.
  4. Treat NULL merchant_code values as equal for duplicate detection.

Schema

transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction record ID
account_numberVARCHAR(20)SPA ledger account reference
transaction_dateDATEBusiness transaction date
merchant_codeVARCHAR(20)Merchant identifier
amountNUMERIC(12,2)Transaction amount
currencyVARCHAR(3)ISO currency code
source_idINTIngestion source reference
transaction_sources
ColumnTypeDescription
source_idPKINTSource identifier
source_nameVARCHAR(80)Ingestion source name
Tablestransactionstransaction_sources
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results