Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Churn and Window Functions

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

Your question is SQL Churn and Window Functions. 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

Natera wants a monthly view of user churn for a registration-based service. A user is considered active at the beginning of a month when their registration started on or before the first day and has not ended before that day. A churn event occurs when a valid registration end date falls within the month.

Write a single PostgreSQL query using the supplied month calendar and registration dates.

Requirements

  1. Return every month in calendar_months, including months with no churn events.
  2. Calculate users active at the start of each month and users who churned during that month.
  3. Calculate churn_percentage as churned users divided by users active at the start of the month, multiplied by 100, rounded to two decimal places.
  4. Exclude same-day registrations where start_date = end_date from churn counts, and return 0 when the denominator is zero.

Schema

calendar_months
ColumnTypeDescription
month_startPKDATEFirst day of a reporting month
user_registrations
ColumnTypeDescription
registration_idPKINTUnique registration identifier
user_idINTNatera user identifier
start_dateDATEDate the registration became active
end_dateDATEDate the registration ended, or NULL when ongoing
Tablescalendar_monthsuser_registrations
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results