Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Classes Per Department SQL

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

Your question is Classes Per Department SQL. 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

Taulia University needs a department-level view of its internal learning catalog. Write a PostgreSQL query that joins departments to classes and reports how many classes belong to each department.

Requirements

  1. Return every department, including departments with no matching classes.
  2. Count classes using class_id, so departments without classes return 0 rather than NULL.
  3. Return department_name and the count as class_count.
  4. Sort by class_count descending, then department_name ascending for deterministic results.

Schema

departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department name
classes
ColumnTypeDescription
class_idPKINTUnique class identifier
department_idINTOwning department identifier
class_nameVARCHAR(150)Taulia University class name
instructor_nameVARCHAR(100)Class instructor
Tablesdepartmentsclasses
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results