Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Classes Per Department SQL
00:00
5 left

Classes Per Department SQL

EasySQL · PostgreSQL

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
Interviewer

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