Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Compare Department Spend to Budget

MediumSQL · PostgreSQL00:00
Rippling
Your interviewer · Financial Analyst
In session
Interviewer

Welcome to the SQL screen for the Financial Analyst role at Rippling.

The question is on your right: Compare Department Spend to Budget. Read through the requirements and the three tables first.

Would you like to talk through your approach, or are you ready to start coding?

Talking through your plan before coding is graded well.

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
Run as often as you like, then submit when the output looks right.
Run a query to see results