Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL and Problem Solving
00:00
5 left

SQL and Problem Solving

MediumSQL · PostgreSQL

Problem

Explain how you use SQL to solve data problems, including any examples of complex aggregations or joins you’ve implemented.

For this exercise, demonstrate the aggregation portion with the supplied trip_records table. Calculate completed-trip metrics by driver and handle excluded statuses and missing fares explicitly.

Output

  1. One row per driver with completed trips
  2. Columns: driver_name, completed_trips, total_fare, and average_fare
  3. Exclude rows that are not marked completed
  4. Order by total_fare descending, then driver_name ascending

Schema

trip_records
ColumnTypeDescription
trip_idPKINTUnique trip identifier
driver_nameVARCHAR(100)Name of the driver associated with the trip
statusVARCHAR(20)Trip completion status
fareDECIMAL(10,2)Fare recorded for the trip
trip_dateDATEDate on which the trip occurred
Tablestrip_records
Interviewer

Your question is SQL and Problem Solving. 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.