본문 바로가기

Algorithm/SQL

(SQL) - LeetCode (easy) 1141. User Activity for the Past 30 Days I

반응형

https://leetcode.com/problems/user-activity-for-the-past-30-days-i/description/

 

User Activity for the Past 30 Days I - LeetCode

Can you solve this real interview question? User Activity for the Past 30 Days I - Table: Activity +---------------+---------+ | Column Name | Type | +---------------+---------+ | user_id | int | | session_id | int | | activity_date | date | | activity_typ

leetcode.com

group by를 사용해보는 문제였습니다.

📕 풀이방법

📔 풀이과정

6월 28 ~ 7월 27일까지의 activity_date 사이에 있는 activity_date와 고유 user_id를 select 해주면 됩니다. 이 때 group by로 첫 번째 행에 대해 수행하면 한 번이라도 활동을 한 user의 id가 나오게 됩니다.


📕 Code

📔 ANSI SQL

SELECT 
    activity_date AS day, 
    COUNT(DISTINCT user_id) AS active_users 
FROM 
    activity
WHERE 
    activity_date BETWEEN '2019-06-28' AND '2019-07-27'
GROUP BY 
    1;

 


*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.