Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Compare Department Spend to Budget

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

Your question is Compare Department Spend to Budget. Start with the requirements and the three 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

You are given departmental budget data and actual expense transactions. Write a PostgreSQL query that compares actual spend versus budget by department and returns each department’s budget, actual spend, variance, and variance percentage.

Schema

departments
ColumnTypeDescription
department_idPKINTPrimary key for the department
department_nameVARCHAR(100)Department name
budgets
ColumnTypeDescription
budget_idPKINTPrimary key for the budget record
department_idINTReferences departments.department_id
budget_monthDATEMonth the budget applies to
budget_amountDECIMAL(12,2)Approved budget amount for the month
expenses
ColumnTypeDescription
expense_idPKINTPrimary key for the expense transaction
department_idINTReferences departments.department_id
expense_dateDATEDate the expense was incurred
amountDECIMAL(12,2)Expense amount
statusVARCHAR(20)Expense status such as approved, pending, or rejected
Tablesdepartmentsbudgetsexpenses
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results