Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Join With Aggregated Counts
00:00
5 left

SQL Join With Aggregated Counts

EasySQL · PostgreSQL

Problem

The Fractal AI platform tracks model inference runs across multiple analytical categories. Write a PostgreSQL query that reports how many completed inference runs belong to each matching model category.

Requirements

  1. Join inference_runs to model_categories using category_id and return only rows with a matching category.
  2. Count completed runs for each category, excluding runs with other statuses.
  3. Return categories ordered by completed run count descending, then category name ascending for ties.

Schema

model_categories
ColumnTypeDescription
category_idPKINTUnique model category identifier
category_nameVARCHAR(50)Name of the analytical category
inference_runs
ColumnTypeDescription
run_idPKINTUnique inference run identifier
category_idINTCategory associated with the inference run
run_statusVARCHAR(20)Current status of the inference run
Tablesmodel_categoriesinference_runs
Interviewer

Your question is SQL Join With Aggregated Counts. 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.