Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Month-Over-Month Merchant Retention

HardSQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is Month-Over-Month Merchant Retention. Start with the requirements and the two tables on the right.

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.

Problem

Shopify wants to monitor whether active merchants continue using Shopify across consecutive months. Write a PostgreSQL query that calculates month-over-month retention for each month with a preceding month of activity.

Requirements

  1. Treat an active merchant as a merchant with at least one non-null activity event during the month and status = 'active'.
  2. For each month after the first observed month, return the previous month's active merchant count, the count retained into the current month, and the retention rate.
  3. Deduplicate multiple activity events from the same merchant in the same month. Round the retention rate to six decimal places and order results chronologically.

Schema

merchants
ColumnTypeDescription
merchant_idPKINTUnique Shopify merchant identifier
shop_domainVARCHAR(255)Shopify shop domain
statusVARCHAR(20)Merchant account status
created_atDATEDate the merchant account was created
merchant_activity
ColumnTypeDescription
activity_idPKINTUnique activity record identifier
merchant_idINTReferenced merchant identifier
activity_typeVARCHAR(50)Type of merchant activity
occurred_atTIMESTAMPTimestamp when the activity occurred
Tablesmerchantsmerchant_activity
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results