Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Department Cost Totals by Join

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

Your question is Department Cost Totals by Join. 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

At Northstar Analytics, finance tracks department spending in a separate expense table. Write a SQL query to join the department and expense data and return the total cost for each department.

Requirements

  1. Join departments and expenses using the department key.
  2. Return each department's name and the sum of its expense cost values.
  3. Group the results by department name.
  4. Order the output by total cost descending, then department name ascending.

Schema

departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department name
regionVARCHAR(50)Region assigned to the department
expenses
ColumnTypeDescription
expense_idPKINTUnique expense identifier
department_idINTDepartment linked to the expense
expense_typeVARCHAR(50)Category of expense
costDECIMAL(10,2)Expense amount
Tablesdepartmentsexpenses
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results