Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rank Branches by Monthly Revenue

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

Your question is Rank Branches by Monthly Revenue. 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 the task of analyzing branch performance for a retail banking network. Write a PostgreSQL query that joins and_huntington_transactions, and_huntington_employees, and and_huntington_branches to calculate total monthly revenue per branch and identify the top-performing branch or branches for each month. Treat revenue as the sum of positive transaction amounts only, and ignore rows where the transaction is not tied to a valid employee-branch relationship.

Schema

and_huntington_transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
employee_idINTEmployee who handled the transaction
transaction_dateDATEDate the transaction occurred
amountDECIMAL(12,2)Transaction amount; positive values count as revenue
and_huntington_employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee full name
branch_idINTBranch assignment for the employee
and_huntington_branches
ColumnTypeDescription
branch_idPKINTUnique branch identifier
branch_nameVARCHAR(100)Branch name
cityVARCHAR(100)City where the branch is located
Tablesand_huntington_transactionsand_huntington_employeesand_huntington_branches
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results