Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Policies Sold Per Region Query

EasySQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is Policies Sold Per Region Query. Start with the requirements and the two tables on the right.

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.

Problem

Business Context

AXA XL Insurance needs a regional view of policies sold across its underwriting portfolio. Regions with no sold policies must still appear so that reporting includes the complete regional structure.

Task

Write a PostgreSQL query that returns the number of policies with policy_status = 'Sold' for every AXA XL Insurance region.

Requirements

  1. Include every region, including regions with zero sold policies.
  2. Count only policies whose status is Sold.
  3. Return region_name and the count as sold_policy_count.
  4. Sort by sold policy count descending, then region name ascending.

Schema

regions
ColumnTypeDescription
region_idPKINTUnique region identifier
region_nameVARCHAR(100)AXA XL Insurance reporting region
policies
ColumnTypeDescription
policy_idPKINTUnique policy identifier
policy_numberVARCHAR(30)Business policy reference
region_idINTAssigned reporting region
policy_statusVARCHAR(20)Current policy status
product_lineVARCHAR(80)Insurance product line
Tablesregionspolicies
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results