Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Retention for Linked Accounts
00:00
5 left

Retention for Linked Accounts

MediumSQL · PostgreSQL

Problem

Write a query to calculate the month-over-month retention rate of users who linked their bank accounts in their first week at Truebill.

Use the users and bank_account_links tables. Treat the first week as the seven-day period beginning at signup, and measure retention by the number of months since each user's first qualifying link.

Output

  1. One row per month number since the user's first qualifying link.
  2. Columns: month_number, active_users, prior_month_users, and retention_rate.
  3. Include month zero, use NULL for its retention rate, and sort by month_number ascending.

Schema

users
ColumnTypeDescription
user_idPKINTUnique Truebill user identifier
signup_atTIMESTAMPTimestamp when the user signed up
bank_account_links
ColumnTypeDescription
link_idPKINTUnique bank account link event identifier
user_idINTUser associated with the link event
linked_atTIMESTAMPTimestamp when the bank account was linked
Tablesusersbank_account_links
Interviewer

Your question is Retention for Linked Accounts. 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.