Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Claims in Six-Month Window
00:00
5 left

Claims in Six-Month Window

MediumSQL · PostgreSQL

Problem

How would you write a SQL query to identify policyholders who have had more than two claims within a six-month window at Aspire General Insurance?

Use the policyholders and claims tables. Treat the six-month boundary as inclusive and return the earliest qualifying window for each policyholder.

Output

  1. One row per qualifying policyholder, with policyholder_id, policyholder_name, window_start, and claim_count.
  2. Include only policyholders with more than two claims in the window.
  3. Order by policyholder_id, then window_start.

Schema

policyholders
ColumnTypeDescription
policyholder_idPKINTUnique policyholder identifier
policyholder_nameVARCHAR(100)Full name of the policyholder
policy_numberVARCHAR(30)Insurance policy reference
emailVARCHAR(150)Policyholder email address
claims
ColumnTypeDescription
claim_idPKINTUnique claim identifier
policyholder_idINTPolicyholder associated with the claim
claim_dateDATEDate the claim was filed
claim_statusVARCHAR(30)Current claim processing status
Tablespolicyholdersclaims
Interviewer

Your question is Claims in Six-Month Window. Start with the requirements and the two tables in the Question tab.

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.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.