Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top 3 Policies Per Region
00:00
5 left

Top 3 Policies Per Region

EasySQL · PostgreSQL

Problem

Arthur J. Gallagher & needs a regional view of its highest-grossing policies for 2025. Write a PostgreSQL query that joins policy records to their regions, ranks qualifying policies within each region, and returns the top three.

Requirements

  1. Include only policies with status = 'Active' and an issued_on date in 2025.
  2. Exclude policies whose annual_premium is NULL.
  3. Use a window function partitioned by region, ranking higher premiums first. Break ties with the lowest policy_id.
  4. Return no more than three policies per region, ordered by region name and rank.

Schema

regions
ColumnTypeDescription
region_idPKINTUnique identifier for an operating region
region_nameVARCHAR(100)Name of the operating region
policies
ColumnTypeDescription
policy_idPKINTUnique identifier for a policy
region_idINTRegion associated with the policy
statusVARCHAR(20)Current policy status
issued_onDATEDate the policy was issued
annual_premiumNUMERIC(12,2)Annual premium amount
Tablespoliciesregions
Interviewer

Your question is Top 3 Policies Per Region. 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.