Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Month-End Credit Balance Aging View

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

Your question is Month-End Credit Balance Aging View. 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

You are given credit balance activity and resolution data. Write a PostgreSQL query that produces a month-end aging view for unresolved credit balances as of each month-end date in the data. For every unresolved credit balance, return the patient, account, balance amount, month-end snapshot date, age in days at month-end, and an aging bucket based on that age. Only balances still unresolved at month-end should appear.

Schema

credit_balances
ColumnTypeDescription
credit_balance_idPKINTPrimary key for the credit balance record
patient_idINTPatient identifier
account_idINTAccount identifier
balance_amountNUMERIC(12,2)Credit balance amount
balance_created_dateDATEDate the credit balance was created
source_systemVARCHAR(50)Source system name
credit_resolutions
ColumnTypeDescription
resolution_idPKINTPrimary key for the resolution record
credit_balance_idINTForeign key to credit_balances.credit_balance_id
resolved_dateDATEDate the balance was resolved
resolution_statusVARCHAR(20)Resolution status
Tablescredit_balancescredit_resolutions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results