Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Window Function Ranking Claims

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

Your question is Window Function Ranking 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

The Hanover Insurance Group wants to review open claims by active customer, with the highest-value claims shown first. Write a PostgreSQL query using a window function to rank each qualifying claim within its customer.

Requirements

  1. Join customers to claims using customer_id.
  2. Include only active customers and claims with claim_status = 'OPEN' and a non-null claim amount.
  3. Use RANK() to rank claims by claim_amount in descending order within each customer. Tied amounts must receive the same rank.
  4. Return the customer ID, customer name, claim ID, claim amount, and calculated rank, ordered by customer and rank.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique policyholder identifier
customer_nameVARCHAR(100)Policyholder name
is_activeBOOLEANWhether the customer is currently active
claims
ColumnTypeDescription
claim_idPKINTUnique claim identifier
customer_idINTCustomer associated with the claim
claim_amountDECIMAL(12,2)Reported claim amount
claim_statusVARCHAR(20)Current claim status
Tablescustomersclaims
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results