Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling Average Claims Query

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

Your question is Rolling Average Claims Query. 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

Texas Mutual Insurance needs a monthly view of reported claims by business unit. Write a PostgreSQL query that includes months with no claims and calculates a rolling average across the current month and the two preceding months.

Requirements

  1. Generate one row for every business unit and each month from January through March 2024.
  2. Count reported claims by business unit and month, returning zero when no claims exist.
  3. Use a window function partitioned by business unit to calculate the three-month rolling average, ordered chronologically.
  4. Sort the final output by business unit name and month.

Schema

business_units
ColumnTypeDescription
business_unit_idPKINTEGERUnique business unit identifier
unit_nameVARCHAR(100)Texas Mutual operating unit name
claims
ColumnTypeDescription
claim_idPKINTEGERUnique claim identifier
business_unit_idINTEGERBusiness unit associated with the claim
reported_atDATEDate the claim was reported
claim_statusVARCHAR(30)Current claim status
incurred_amountNUMERIC(12,2)Reported incurred amount
Tablesbusiness_unitsclaims
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results