Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
ExtraCash MoM Active User Growth
00:00
5 left

ExtraCash MoM Active User Growth

MediumSQL · PostgreSQL

Problem

Write a query to find the month-over-month growth rate of active users who have taken out an ExtraCash advance.

Use the users and extracash_advances tables. Count distinct users with an active account and a funded ExtraCash advance in each calendar month. Include months with no qualifying users when they fall between the first and last relevant advance month.

Output

  1. One row per calendar month, ordered chronologically.
  2. Columns: month_start, active_users, and mom_growth_rate.
  3. Return the growth rate as a percentage rounded to two decimal places. Return NULL when no prior-month comparison is available or the prior month has zero active users.

Schema

users
ColumnTypeDescription
user_idPKINTUnique Dave user identifier
account_statusVARCHAR(20)Current account status
extracash_advances
ColumnTypeDescription
advance_idPKINTUnique ExtraCash advance identifier
user_idINTUser who requested the advance
productVARCHAR(30)Advance product name
advance_statusVARCHAR(20)Current advance status
advance_dateDATEDate the advance was issued or requested
Tablesusersextracash_advances
Interviewer

Your question is ExtraCash MoM Active User Growth. 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.