Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Week-over-Week Retention Query

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

Your question is Week-over-Week Retention Query. 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

Asana Spa has launched the Smart Goals feature and wants to measure whether users continue using it after their first use. Write a PostgreSQL query that calculates weekly retention by first-use cohort.

The launch week begins on 2025-01-06, and weeks start on Monday.

Requirements

  1. Build each user's Smart Goals first-use week, excluding events before launch and events for other features.
  2. For every cohort week and activity week through the latest qualifying event, return the number of users in the cohort, the number active in that activity week, and the retention rate as a percentage.
  3. Include week 0, show weeks with no retained users as 0, avoid duplicate events, and order by cohort week followed by activity week.

Schema

users
ColumnTypeDescription
user_idPKINTUnique Asana Spa user identifier
user_nameVARCHAR(100)User display name
feature_events
ColumnTypeDescription
event_idPKINTUnique feature event identifier
user_idINTUser associated with the feature event
feature_nameVARCHAR(100)Name of the feature used
event_atTIMESTAMPTimestamp when the feature event occurred
Tablesusersfeature_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results