Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling 30-Day Claim Totals SQL

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

Your question is Rolling 30-Day Claim Totals SQL. 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

Aetna's member analytics team needs a daily view of paid claim activity for active members. Write a PostgreSQL query that calculates each member's rolling 30-day claim total, including the current claim date and the preceding 29 calendar days.

Requirements

  1. Include only members whose coverage_status is active and claims whose claim_status is paid.
  2. Aggregate multiple paid claims for the same member and date before applying the window function.
  3. Return the member ID, member name, claim date, daily paid claim total, and rolling 30-day claim total.
  4. Treat a nullable claim amount as zero and order results by member ID and claim date.

Schema

members
ColumnTypeDescription
member_idPKINTUnique member identifier
member_nameVARCHAR(100)Member's name
coverage_statusVARCHAR(20)Coverage status, such as active or inactive
regionVARCHAR(30)Member service region
claims
ColumnTypeDescription
claim_idPKINTUnique claim identifier
member_idINTMember associated with the claim
claim_dateDATEDate the claim was submitted
claim_amountNUMERIC(12,2)Paid claim amount
claim_statusVARCHAR(20)Claim processing status
Tablesmembersclaims
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results