Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Resolving Report Discrepancies
00:00
5 left

Resolving Report Discrepancies

MediumSQL · PostgreSQL

Problem

How would you handle a situation when you discovered a discrepancy on a report?

Use the provided report and transaction tables to identify periods where the reported total does not agree with the transaction-derived total, including missing report periods and missing source transactions.

Output

  1. One row per discrepancy, with customer_id, report_month, reported_total, calculated_total, variance, and discrepancy_status.
  2. Include amount mismatches, missing reports, missing source transactions, and NULL reported totals. Exclude matching totals.
  3. Order by report_month ascending, then customer_id ascending.

Schema

report_totals
ColumnTypeDescription
customer_idPKINTCustomer identifier reported in the monthly report
report_monthPKDATEFirst day of the reporting month
reported_totalNUMERIC(12,2)Total amount recorded in the report
source_transactions
ColumnTypeDescription
transaction_idPKINTUnique source transaction identifier
customer_idINTCustomer associated with the transaction
transaction_dateDATEDate on which the transaction occurred
amountNUMERIC(12,2)Transaction amount used to calculate the expected report total
Tablesreport_totalssource_transactions
Interviewer

Your question is Resolving Report Discrepancies. 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.