Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Engagement Increase Streak
00:00
5 left

SQL Engagement Increase Streak

MediumSQL · PostgreSQL

Problem

Write a SQL query to identify users whose engagement increased month over month for three consecutive months.

Assume three consecutive increases require four consecutive calendar months. Missing months and NULL engagement values do not count as increases. Return only each user's earliest qualifying period.

Output

  1. One row per qualifying user
  2. Columns: user_id, user_name, start_month, end_month, starting_engagement, ending_engagement
  3. Include the four-month period containing three consecutive increases
  4. Order by user_id ascending

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
user_nameVARCHAR(100)Display name of the user
engagement_monthly
ColumnTypeDescription
user_idPKINTUser associated with the monthly record
engagement_monthPKDATEFirst calendar day of the engagement month
engagement_scoreINTMonthly engagement measurement
Tablesusersengagement_monthly
Interviewer

Your question is SQL Engagement Increase Streak. 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.