Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Compare Driver Hourly Earnings by Zone
00:00
5 left

Compare Driver Hourly Earnings by Zone

EasySQL · PostgreSQL

Problem

RideNow wants a simple comparison of driver pay efficiency across service areas. Write a SQL query to calculate the average earnings per hour for rides in the Downtown zone versus the Suburbs zone.

Requirements

  1. Use only rows where zone is Downtown or Suburbs.
  2. For each zone, calculate average earnings per hour as SUM(earnings) / SUM(ride_minutes / 60.0).
  3. Exclude rows where ride_minutes is NULL or less than or equal to 0.
  4. Return zone and avg_earnings_per_hour, ordered by avg_earnings_per_hour descending.

Schema

driver_rides
ColumnTypeDescription
ride_idPKINTUnique ride identifier
driver_idINTDriver identifier
zoneVARCHAR(50)Service zone where the ride occurred
ride_minutesINTRide duration in minutes
earningsDECIMAL(10,2)Driver earnings for the ride
ride_dateDATEDate of the ride
Tablesdriver_rides
Interviewer

Your question is Compare Driver Hourly Earnings by Zone. Start with the requirements and the one table 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.