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.
policyholder_id, policyholder_name, and max_claims_in_12_month_window.policyholder_id ascending.| Column | Type | Description |
|---|---|---|
| policyholder_idPK | INT | Unique policyholder identifier |
| policyholder_name | VARCHAR(100) | Policyholder full name |
| Column | Type | Description |
|---|---|---|
| claim_idPK | INT | Unique claim identifier |
| policyholder_id | INT | Policyholder associated with the claim |
| claim_date | DATE | Date the claim was submitted |
| claim_status | VARCHAR(20) | Current claim status |