Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Consecutive Twelve-Month Claim Count
00:00
5 left

Consecutive Twelve-Month Claim Count

MediumSQL · PostgreSQL

Problem

Write a query to identify policyholders who have submitted more than two claims within a consecutive twelve-month window.

Use the provided policyholder and claim data. Treat claims occurring exactly twelve months apart as being within the same window.

Output

  1. One row per qualifying policyholder.
  2. Columns: policyholder_id, policyholder_name, and max_claims_in_12_month_window.
  3. Include only policyholders with more than two claims in at least one twelve-month window, ordered by policyholder_id ascending.

Schema

policyholders
ColumnTypeDescription
policyholder_idPKINTUnique policyholder identifier
policyholder_nameVARCHAR(100)Policyholder full name
claims
ColumnTypeDescription
claim_idPKINTUnique claim identifier
policyholder_idINTPolicyholder associated with the claim
claim_dateDATEDate the claim was submitted
claim_statusVARCHAR(20)Current claim status
Tablespolicyholdersclaims
Interviewer

Your question is Consecutive Twelve-Month Claim Count. 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.