
Facebook wants to measure habit strength by finding each user's longest streak of consecutive daily activity. Write a SQL query to return the longest daily activity streak per user.
user_id, longest streak length, streak start date, and streak end date.user_id ascending.facebook_activity| column_name | type | description |
|---|---|---|
| activity_id | INT | Unique event identifier |
| user_id | INT | Facebook user identifier |
| activity_date | TIMESTAMP | Timestamp of the activity event |
| surface | VARCHAR(50) | Meta surface where the event happened |
| activity_type | VARCHAR(50) | Type of user action |
| device_type | VARCHAR(20) | Device used for the event |
| activity_id | user_id | activity_date | surface | activity_type | device_type |
|---|---|---|---|---|---|
| 8 | 102 | 2024-01-03 08:00:00 | Facebook Feed | view | Android |
| 1 | 101 | 2024-01-01 09:15:00 | Facebook Feed | like | iPhone |
| 3 | 101 | 2024-01-02 18:20:00 | Facebook Stories | comment | iPhone |
| 11 | 103 | 2024-01-10 09:00:00 | Facebook Feed | post | Web |
| 5 | 101 | 2024-01-05 11:00:00 | Facebook Feed | share | Android |
| 14 | 104 | 2024-01-04 16:00:00 | Facebook Feed | like | iPhone |
| user_id | longest_streak | streak_start_date | streak_end_date |
|---|---|---|---|
| 101 | 3 | 2024-01-01 | 2024-01-03 |
| 102 | 4 | 2024-01-03 | 2024-01-06 |
| 103 | 2 | 2024-01-10 | 2024-01-11 |
| 104 | 1 | 2024-01-04 | 2024-01-04 |
| Column | Type | Description |
|---|---|---|
| activity_idPK | INT | Unique identifier for each activity event |
| user_id | INT | Facebook user identifier |
| activity_date | TIMESTAMP | Timestamp when the activity occurred |
| surface | VARCHAR(50) | Meta surface where the event occurred |
| activity_type | VARCHAR(50) | Type of activity performed |
| device_type | VARCHAR(20) | Device used for the activity |
| activity_id | user_id | activity_date | surface | activity_type | device_type |
|---|---|---|---|---|---|
| 8 | 102 | 2024-01-03 08:00:00 | Facebook Feed | view | Android |
| 1 | 101 | 2024-01-01 09:15:00 | Facebook Feed | like | iPhone |
| 3 | 101 | 2024-01-02 18:20:00 | Facebook Stories | comment | iPhone |
| 11 | 103 | 2024-01-10 09:00:00 | Facebook Feed | post | Web |
| 5 | 101 | 2024-01-05 11:00:00 | Facebook Feed | share | Android |
| 14 | 104 | 2024-01-04 16:00:00 | Facebook Feed | like | iPhone |
| 2 | 101 | 2024-01-01 20:45:00 | Facebook Reels | view | Android |
| 9 | 102 | 2024-01-04 12:30:00 | Facebook Feed | comment | Android |
| 6 | 101 | 2024-01-06 07:10:00 | Facebook Stories | view | Android |
| 12 | 103 | 2024-01-11 10:15:00 | Facebook Feed | comment | Web |
| 4 | 101 | 2024-01-03 08:05:00 | Facebook Feed | post | iPhone |
| 10 | 102 | 2024-01-06 21:00:00 | Facebook Reels | share | iPhone |
| 15 | 104 | 2024-01-13 08:46:59 | Facebook Reels | search | Linux |
| 16 | 104 | 2024-01-05 01:56:39 | Facebook Messenger | send_friend_request | null |
| 17 | 103 | 2024-01-08 16:06:53 | Facebook Profile | watch | Surface Pro |
| 18 | 104 | 2023-12-31 15:59:07 | Facebook Pages | react | iPhone |
| 19 | 102 | 2024-01-10 23:23:36 | Facebook Saved | like | Web |
| 20 | 104 | 2024-01-13 00:27:26 | Facebook Feed | post | Surface Pro |
| 21 | 102 | null | Facebook Saved | leave_group | Pixel |
| 22 | 102 | 2024-01-04 19:34:35 | Facebook Events | mention | null |
| 23 | 102 | 2024-01-01 14:09:33 | Facebook Ads Library | like | Safari Web |
| 24 | 103 | null | Facebook Profile | share | Meta Portal |
| 25 | 101 | 2024-01-13 23:16:26 | Facebook Community Help | tag | iOS App |
| 26 | 104 | 2024-01-03 09:41:09 | Facebook Video | invite | Smart TV |
| 27 | 104 | 2023-12-30 17:20:48 | Facebook News Tab | tag | Windows |
| 28 | 102 | 2024-01-03 02:20:48 | Facebook Community Help | null | Mobile Web |
| 29 | 101 | 2024-01-13 02:34:51 | Facebook Watch | invite | Smart TV |
| 30 | 104 | 2024-01-01 19:32:11 | Facebook Reels | save | Mac |
| 31 | 103 | 2024-01-11 11:52:38 | Facebook Memories | click | Safari Web |
| user_id | longest_streak | streak_start_date | streak_end_date |
|---|---|---|---|
| 101 | 3 | 2024-01-01 | 2024-01-03 |
| 102 | 2 | 2024-01-03 | 2024-01-04 |
| 103 | 2 | 2024-01-10 | 2024-01-11 |
| 104 | 3 | 2023-12-30 | 2024-01-01 |