Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Loan Originations MoM Growth
00:00
5 left

Loan Originations MoM Growth

MediumSQL · PostgreSQL

Problem

Write a query to find the month-over-month growth rate of loan originations by marketing channel at Prosper Marketplace.

Use the origination amount and origination timestamp. Exclude records that cannot be associated with a recognized marketing channel.

Output

  1. One row per recognized marketing channel and month with originations.
  2. Columns: channel_name, originations_month, total_originations, mom_growth_rate.
  3. Show the earliest month first for each channel. The first month’s growth rate should be NULL.

Schema

marketing_channels
ColumnTypeDescription
channel_idPKINTUnique marketing channel identifier
channel_nameVARCHAR(100)Prosper Marketplace marketing channel name
loan_originations
ColumnTypeDescription
origination_idPKINTUnique loan origination identifier
channel_idINTMarketing channel associated with the origination
originated_atTIMESTAMPTimestamp when the loan was originated
origination_amountDECIMAL(14,2)Loan amount originated
Tablesloan_originationsmarketing_channels
Interviewer

Your question is Loan Originations MoM 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.