Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Self-Join SQL for User Cohorts
00:00
5 left

Self-Join SQL for User Cohorts

HardSQL · PostgreSQL

Problem

CRED wants to evaluate referral-led user cohorts. Write a PostgreSQL query that self-joins users to connect each referrer with referred users, then measures early payment activity.

Requirements

  1. Group results by the referrer's signup month using TO_CHAR.
  2. Include referred users only when they signed up within 30 days of the referrer.
  3. Count distinct referred users with at least one successful payment within 30 days of their own signup, calculate total successful payment value, and calculate average payment value per active referred user.
  4. Retain referral cohorts with no qualifying successful payments, showing zero values.

Schema

users
ColumnTypeDescription
user_idPKINTUnique CRED user identifier
full_nameVARCHAR(100)User's name
signup_dateDATEDate the user joined CRED
referred_by_user_idINTNullable self-reference to the referring user
payments
ColumnTypeDescription
payment_idPKINTUnique payment identifier
user_idINTUser who made the payment
paid_atDATEPayment date
amountNUMERIC(10,2)Payment amount
statusVARCHAR(20)Payment processing status
Tablesuserspayments
Interviewer

Your question is Self-Join SQL for User Cohorts. 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.