Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Join and Category Aggregation

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

Your question is SQL Join and Category Aggregation. 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

Skydio uses flight-event data to monitor activity across its drone portfolio. Write a PostgreSQL query that joins drone models with their flight events and summarizes completed flight activity by category.

Requirements

  1. Include every drone category, including categories with no qualifying flight events.
  2. Consider only events from 2025-01-01 through 2025-03-31, inclusive.
  3. Return the number of completed flights and total completed flight minutes for each category. Treat missing totals as zero.
  4. Order the results alphabetically by category.

Schema

drone_models
ColumnTypeDescription
model_idPKINTUnique drone model identifier
model_nameVARCHAR(100)Skydio drone model name
categoryVARCHAR(50)Operational category for the model
flight_events
ColumnTypeDescription
event_idPKINTUnique flight event identifier
model_idINTReferenced drone model identifier
event_dateDATEDate of the flight event
statusVARCHAR(20)Flight event status
flight_minutesINTRecorded flight duration in minutes
Tablesdrone_modelsflight_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results