Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Jurisdictions Monthly SQL
00:00
5 left

Top Jurisdictions Monthly SQL

MediumSQL · PostgreSQL

Problem

A tax analytics team needs a monthly report of transaction activity by jurisdiction. Write a SQL query to identify the top three jurisdictions by transaction volume for each month in the previous completed fiscal year, where the fiscal year begins on July 1.

Output

  1. One row per ranked jurisdiction and month, with columns month_start, jurisdiction_name, transaction_volume, and monthly_rank.
  2. Include only transactions dated within the previous completed fiscal year. Exclude transactions with a NULL date or without a matching jurisdiction.
  3. Return at most three jurisdictions per month. Rank by transaction volume descending, breaking ties alphabetically by jurisdiction name.
  4. Order by month_start, then monthly_rank, then jurisdiction_name.

Schema

tax_transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
jurisdiction_idINTTax jurisdiction associated with the transaction
transaction_dateDATEDate on which the transaction occurred
tax_jurisdictions
ColumnTypeDescription
jurisdiction_idPKINTUnique tax jurisdiction identifier
jurisdiction_nameVARCHAR(100)Name of the tax jurisdiction
Tablestax_transactionstax_jurisdictions
Interviewer

Your question is Top Jurisdictions Monthly SQL. 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.