Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Running 30-Day Average of Claims

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

Your question is Running 30-Day Average of Claims. 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

GDIT healthcare claims analytics requires a daily view of prescription claim volume for each provider. Write a PostgreSQL query that calculates a rolling 30-day average, including calendar days with zero claims.

Requirements

  1. Count prescription claims per provider and calendar date.
  2. Include every provider for every date between the first and last valid prescription claim, treating missing daily activity as zero.
  3. Use a window function partitioned by provider and ordered by date to calculate the average across the current day and preceding 29 calendar days.
  4. For the supplied sample, return only the final calendar date, ordered by provider ID.

Schema

providers
ColumnTypeDescription
provider_idPKINTUnique provider identifier
provider_nameVARCHAR(100)Provider display name
prescription_claims
ColumnTypeDescription
claim_idPKINTUnique claim identifier
provider_idINTProvider associated with the claim
claim_dateDATEDate the claim was submitted
claim_typeVARCHAR(30)Claim classification
Tablesprovidersprescription_claims
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results