返回介绍

solution / 1100-1199 / 1141.User Activity for the Past 30 Days I / README_EN

发布于 2024-06-17 01:03:23 字数 2836 浏览 0 评论 0 收藏 0

1141. User Activity for the Past 30 Days I

中文文档

Description

Table: Activity

+---------------+---------+
| Column Name   | Type  |
+---------------+---------+
| user_id     | int   |
| session_id  | int   |
| activity_date | date  |
| activity_type | enum  |
+---------------+---------+
This table may have duplicate rows.
The activity_type column is an ENUM (category) 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.

 

Write a solution to find the daily active user count for a period of 30 days ending 2019-07-27 inclusively. A user was active on someday if they made at least one activity on that day.

Return the result table in any order.

The result format is in the following example.

 

Example 1:

Input: 
Activity table:
+---------+------------+---------------+---------------+
| user_id | session_id | activity_date | activity_type |
+---------+------------+---------------+---------------+
| 1     | 1      | 2019-07-20  | open_session  |
| 1     | 1      | 2019-07-20  | scroll_down   |
| 1     | 1      | 2019-07-20  | end_session   |
| 2     | 4      | 2019-07-20  | open_session  |
| 2     | 4      | 2019-07-21  | send_message  |
| 2     | 4      | 2019-07-21  | end_session   |
| 3     | 2      | 2019-07-21  | open_session  |
| 3     | 2      | 2019-07-21  | send_message  |
| 3     | 2      | 2019-07-21  | end_session   |
| 4     | 3      | 2019-06-25  | open_session  |
| 4     | 3      | 2019-06-25  | end_session   |
+---------+------------+---------------+---------------+
Output: 
+------------+--------------+ 
| day    | active_users |
+------------+--------------+ 
| 2019-07-20 | 2      |
| 2019-07-21 | 2      |
+------------+--------------+ 
Explanation: Note that we do not care about days with zero active users.

Solutions

Solution 1

# Write your MySQL query statement below
SELECT activity_date AS day, COUNT(DISTINCT user_id) AS active_users
FROM Activity
WHERE activity_date <= '2019-07-27' AND DATEDIFF('2019-07-27', activity_date) < 30
GROUP BY 1;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文