Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Window Functions for Top Policies
00:00
5 left

SQL Window Functions for Top Policies

MediumSQL · PostgreSQL

Problem

Write a SQL query using window functions to find the top three highest-value insurance policies per region at Verisk.

Use the provided regions and policies tables. Exclude policies without a policy value or without a matching region. For deterministic results, break equal-value ties by ascending policy ID.

Output

  1. One row per qualifying policy, with region_name, policy_id, policy_number, policy_value, and policy_rank.
  2. Include no more than three policies per region.
  3. Order by region_name, policy_rank, then policy_id.

Schema

regions
ColumnTypeDescription
region_idPKINTUnique identifier for a geographic region
region_nameVARCHAR(100)Name of the geographic region
policies
ColumnTypeDescription
policy_idPKINTUnique identifier for an insurance policy
policy_numberVARCHAR(30)Business-facing policy reference
region_idINTRegion associated with the policy
policy_valueNUMERIC(14,2)Monetary value of the insurance policy
Tablesregionspolicies
Interviewer

Your question is SQL Window Functions for Top Policies. 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.