Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top High-Cost Claims Query

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

Your question is Top High-Cost Claims Query. Start with the requirements and the four 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

Optum Financial needs a monthly review of unusually expensive claims. Write a PostgreSQL query that identifies the top 10% of eligible claims for May 2025 based on total paid amount.

Requirements

  1. Include claims whose claim_date falls from 2025-05-01 through 2025-05-31, using an inclusive lower bound and exclusive upper bound.
  2. Include only claims with status PAID or PARTIALLY_PAID and matching member and plan records.
  3. Aggregate multiple claim lines into one total paid amount per claim, treating missing line amounts as zero.
  4. Use a window function to identify the highest-cost 10%. Include ties at the cutoff and order the final output by total paid amount descending, then claim ID.

Schema

claims
ColumnTypeDescription
claim_idPKINTUnique claim identifier
member_idINTReference to the covered member
plan_idINTReference to the benefit plan
claim_dateDATEClaim submission date
statusVARCHAR(30)Claim processing status
claim_lines
ColumnTypeDescription
claim_line_idPKINTUnique claim line identifier
claim_idINTReference to the claim
paid_amountDECIMAL(12,2)Amount paid for the claim line
members
ColumnTypeDescription
member_idPKINTUnique member identifier
member_nameVARCHAR(100)Member display name
plans
ColumnTypeDescription
plan_idPKINTUnique benefit plan identifier
plan_nameVARCHAR(100)Benefit plan name
Tablesclaimsclaim_linesmembersplans
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results