Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rolling 30-Day Behavior Patterns
00:00
5 left

Rolling 30-Day Behavior Patterns

HardSQL · PostgreSQL

Problem

Write a SQL query to identify recurring user behavior patterns over a rolling 30-day window for Kake. Treat a behavior as recurring when a user performs it on at least three distinct dates within the 30-day period ending on an activity date. Exclude incomplete activity records and users without a matching account.

Output

  1. One row per qualifying user, behavior, and window end date
  2. Columns: username, behavior_type, window_end_date, active_days_30d, and event_count_30d
  3. Include only windows with at least three active days, ordered by username, behavior_type, and window_end_date ascending

Schema

users
ColumnTypeDescription
user_idPKINTUnique Kake user identifier
usernameVARCHAR(100)Display name for the user
user_activity
ColumnTypeDescription
activity_idPKINTUnique activity record identifier
user_idINTUser associated with the activity
behavior_typeVARCHAR(50)Observed user behavior
occurred_atTIMESTAMPTimestamp when the behavior occurred
Tablesusersuser_activity
Interviewer

Your question is Rolling 30-Day Behavior Patterns. 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.