Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Capex by Department
00:00
5 left

SQL for Capex by Department

MediumSQL · PostgreSQL

Problem

Write a SQL query to find the total capital expenditure by department for the last fiscal quarter, joining a transactions table with a department mapping table.

Assume fiscal quarters follow calendar quarters, and determine the last fiscal quarter relative to current_date. Include only capital expenditure transactions with a matching department.

Output

  1. One row per department, with department_name and total_capex.
  2. Include departments with matching capital expenditure transactions only.
  3. Sort by total_capex descending, then department_name ascending.

Schema

transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
department_codeVARCHAR(10)Code identifying the responsible department
transaction_dateDATEDate the transaction was recorded
transaction_typeVARCHAR(20)Financial transaction classification
amountDECIMAL(14,2)Transaction amount in dollars
department_mapping
ColumnTypeDescription
department_codePKVARCHAR(10)Unique department code
department_nameVARCHAR(100)Readable department name
Tablestransactionsdepartment_mapping
Interviewer

Your question is SQL for Capex by Department. 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.