1142. User Activity for the Past 30 Days II
Description
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| user\_id | int |
| session\_id | int |
| activity\_date | date |
| activity\_type | enum |
+---------------+---------+
There is no primary key for this table, it may have duplicate rows.
The activity\_type column is an ENUM of type ('open\_session', 'end\_session', 'scroll\_down', 'send\_message').
The table shows the user activities for a social media website.
Note that each session belongs to exactly one user.ac
Last updated