Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Identify Financial Performance Drivers

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

Your question is Identify Financial Performance Drivers. 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

You are given monthly financial data and asked to identify the main drivers of performance by business segment. Write a PostgreSQL query that joins the tables, calculates revenue, cost, and gross profit by segment for a given month, and classifies each segment as growth, stable, or decline based on gross profit margin.

Schema

segments
ColumnTypeDescription
segment_idPKINTPrimary key for the segment
segment_nameVARCHAR(100)Business segment name
regionVARCHAR(50)Operating region
financial_facts
ColumnTypeDescription
fact_idPKINTPrimary key for the financial fact row
segment_idINTReferences the segment being measured
month_endDATEMonth-end reporting date
revenueNUMERIC(12,2)Reported revenue for the period
costNUMERIC(12,2)Reported cost for the period
is_adjustedBOOLEANWhether the record has been adjusted
Tablessegmentsfinancial_facts
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results