Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Top Delivery Zones
00:00
5 left

SQL for Top Delivery Zones

MediumSQL · PostgreSQL

Problem

Write a SQL query to identify Delivery Hero India top-performing delivery zones based on order volume and time-to-delivery.

Use completed orders with valid delivery timestamps. Return all zones, with the strongest-performing zones first: higher completed order volume precedes lower average delivery time.

Output

  1. One row per delivery zone with zone_id, zone_name, order_volume, avg_delivery_minutes, and performance_rank.
  2. Include zones with no qualifying orders, and sort by performance_rank, then zone_id.

Schema

delivery_zones
ColumnTypeDescription
zone_idPKINTUnique delivery zone identifier
zone_nameVARCHAR(100)Delivery zone name
cityVARCHAR(100)Indian city containing the zone
orders
ColumnTypeDescription
order_idPKINTUnique order identifier
zone_idINTDelivery zone associated with the order
statusVARCHAR(20)Order lifecycle status
placed_atTIMESTAMPOrder placement timestamp
delivered_atTIMESTAMPOrder delivery timestamp
Tablesdelivery_zonesorders
Interviewer

Your question is SQL for Top Delivery Zones. 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.