Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
MoM Growth Rate Query
00:00
5 left

MoM Growth Rate Query

MediumSQL · PostgreSQL

Problem

Write a query to find the month-over-month growth rate of active checking accounts at Axos Bank.

Use the account product type and monthly account status snapshots to calculate the metric. Include only months with a directly preceding month available for comparison. Rows with a NULL product type or status are ignored.

Output

  1. One row per month with a preceding month in the data.
  2. Columns: month_start, active_checking_accounts, prior_month_active_checking_accounts, and mom_growth_rate_pct.
  3. Report the growth rate as a percentage rounded to two decimal places, ordered by month_start ascending.

Schema

bank_accounts
ColumnTypeDescription
account_idPKINTUnique bank account identifier
customer_idINTAxos Bank customer identifier
product_typeVARCHAR(30)Banking product category
opened_dateDATEDate the account was opened
account_snapshots
ColumnTypeDescription
snapshot_idPKINTUnique account snapshot identifier
account_idINTReferenced bank account identifier
snapshot_dateDATEDate of the account status snapshot
statusVARCHAR(30)Account status recorded at the snapshot date
Tablesaccount_snapshotsbank_accounts
Interviewer

Your question is MoM Growth Rate Query. 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.