Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Flag Reporting Discrepancies in iLevel

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

Your question is Flag Reporting Discrepancies in iLevel. 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

HarbourVest Partners wants a simple validation check for operational reporting in iLevel. One common control is comparing reported totals against source transaction totals before a report is published.

Write a SQL query to identify each report_date where the reported cash activity does not match the source cash activity total.

Requirements

  1. Use only the ilevel_cash_activity table.
  2. For each report_date, calculate:
    • total source_amount
    • total reported_amount
    • the difference as reported_amount - source_amount
  3. Return only dates where the totals do not match.
  4. Order results by report_date ascending.

Schema

ilevel_cash_activity
ColumnTypeDescription
activity_idPKINTUnique row identifier
report_dateDATEReporting date used in the operational report
fund_codeVARCHAR(20)HarbourVest fund code
source_amountDECIMAL(12,2)Amount from the source operational record
reported_amountDECIMAL(12,2)Amount included in the published report
statusVARCHAR(20)Load status for the row
Tablesilevel_cash_activity
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results