Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Find Creators With MRR Drop
00:00
5 left

Find Creators With MRR Drop

MediumSQL · PostgreSQL

Problem

Write a query to identify creators who have experienced a significant drop in monthly recurring revenue (MRR) over the last three months on Patreon.

Use the latest three calendar months represented in the MRR data. Treat a significant drop as the latest month's MRR being at least 30% lower than the earliest month's MRR, and require data for all three months.

Output

  1. One row per qualifying creator with creator_id, creator_name, starting_mrr, ending_mrr, and drop_percent.
  2. Include only qualifying creators, ordered by drop_percent descending, then creator_id ascending.

Schema

creators
ColumnTypeDescription
creator_idPKINTUnique Patreon creator identifier
creator_nameVARCHAR(100)Creator display name
creator_mrr_monthly
ColumnTypeDescription
creator_idINTCreator associated with the monthly MRR record
mrr_monthDATEMonth represented by the MRR snapshot
mrr_amountNUMERIC(12,2)Monthly recurring revenue for the creator
Tablescreatorscreator_mrr_monthly
Interviewer

Your question is Find Creators With MRR Drop. 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.