Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Regions by KPI Thresholds
00:00
5 left

Top Regions by KPI Thresholds

MediumSQL · PostgreSQL

Problem

Write a query to identify top-performing regions based on specific KPI thresholds for Bolt.

Use the supplied region, KPI measurement, and threshold data. A region qualifies only when its average value meets or exceeds every defined KPI threshold.

Output

  1. One row per qualifying region with region_name, completion_rate, acceptance_rate, rides_completed, and kpis_met.
  2. Include only regions meeting all three thresholds.
  3. Order by kpis_met descending, then region_name ascending.

Schema

regions
ColumnTypeDescription
region_idPKINTUnique region identifier
region_nameVARCHAR(100)Bolt operating region name
country_codeVARCHAR(2)Two-letter country code
regional_kpis
ColumnTypeDescription
measurement_idPKINTUnique KPI measurement identifier
region_idINTRegion associated with the measurement
kpi_nameVARCHAR(50)KPI being measured
kpi_valueNUMERIC(12,4)Measured KPI value
kpi_thresholds
ColumnTypeDescription
kpi_namePKVARCHAR(50)KPI for which a threshold is defined
minimum_valueNUMERIC(12,4)Minimum acceptable KPI value
Tablesregionsregional_kpiskpi_thresholds
Interviewer

Your question is Top Regions by KPI Thresholds. Start with the requirements and the three 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.