Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Daily Active Users and Retention

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

Your question is Daily Active Users and 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

Amazon Development Center U.S. product analytics needs a daily engagement report for an internal product surface. Write a PostgreSQL query that calculates daily active users and next-day retention from registered-user activity.

Requirements

  1. Count each registered user at most once per activity date, even when the user generates multiple events.
  2. Return daily active users, users active again on the following calendar day, and the next-day retention rate as a percentage.
  3. Exclude activity rows without a matching registered user and return dates in ascending order.
  4. Return NULL for the retention rate on the final activity date because no following day is available.

Schema

users
ColumnTypeDescription
user_idPKINTRegistered user identifier
display_nameVARCHAR(100)User display name
user_activity
ColumnTypeDescription
activity_idPKINTUnique activity event identifier
user_idINTUser who generated the activity
activity_dateDATECalendar date on which the activity occurred
event_typeVARCHAR(30)Type of product activity
Tablesusersuser_activity
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results