Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Claims Rolling Average by Region

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

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

New York Life wants to monitor claims-processing volume across its policy administration regions. Given policy claim transactions and regional metadata, write a PostgreSQL query that reports monthly processed claims and a rolling three-month average for each region.

Requirements

  1. Join claims to the regional reference table and include only claims with status = 'PROCESSED' and a non-null processing date.
  2. Aggregate the number of processed claims by region and calendar month for 2024.
  3. Calculate a rolling average using the current month and the two preceding reported months within each region.
  4. Return results ordered by region name and month, with the rolling average rounded to two decimal places.

The rolling window should use reported monthly rows. A month with no processed claims is not emitted by this query.

Schema

claims
ColumnTypeDescription
claim_idPKINTUnique claim transaction identifier
region_idINTRegion responsible for processing the claim
statusVARCHAR(20)Current claim processing status
processed_atTIMESTAMPTimestamp when claim processing completed
regions
ColumnTypeDescription
region_idPKINTUnique regional identifier
region_nameVARCHAR(50)New York Life operating region name
Tablesclaimsregions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results