Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Dataset Discrepancy Check
00:00
5 left

SQL Dataset Discrepancy Check

MediumSQL · PostgreSQL

Problem

Write a SQL query to perform a comparison between two customer transaction datasets to identify discrepancies.

Compare records by transaction_id, treating NULL values as equal when both datasets contain NULL. Return records that are missing from either dataset or have different customer, date, amount, or status values.

Output

  1. One row per discrepancy, with the transaction ID, discrepancy type, and values from both datasets.
  2. Include missing records and field mismatches only.
  3. Order by transaction_id ascending.

Schema

customer_transactions_a
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
customer_idVARCHAR(20)Customer identifier
transaction_dateDATETransaction date
amountDECIMAL(12,2)Transaction amount
statusVARCHAR(20)Transaction status
customer_transactions_b
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
customer_idVARCHAR(20)Customer identifier
transaction_dateDATETransaction date
amountDECIMAL(12,2)Transaction amount
statusVARCHAR(20)Transaction status
Tablescustomer_transactions_acustomer_transactions_b
Interviewer

Your question is SQL Dataset Discrepancy Check. Start with the requirements and the two tables 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.