Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Data Structure
- implement
- array
- geometry
- bit manipulation
- 코테
- 구현
- Method
- Tree
- string
- simulation
- Stack
- 코딩테스트
- Number Theory
- java
- Binary Search
- Math
- Binary Tree
- Class
- hash table
- two pointers
- Counting
- database
- Matrix
- 자바
- dynamic programming
- 파이썬
- SQL
- greedy
- sorting
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1141. User Activity for the Past 30 Days I 본문
1. Input
1) Table: Activity (pk: 없음)
2. Output
1) 2019년 7월 27일까지의 30일동안 각 날짜마다 액티비티를 즐긴 사람들의 수를 출력
- 출력 순서는 상관 없다.
3. Example
4. Code
1) 첫 코드(2023/06/08)
select activity_date as day, count(user_id) as active_users
from (
select user_id , activity_date
from Activity
where activity_date between '2019-06-28' and '2019-07-27'
group by user_id, activity_date
) a
group by day;
- 33%
'코딩테스트 풀이 > SQL' 카테고리의 다른 글
[LeetCode/Easy] 1327. List the Products Ordered in a Period (0) | 2023.06.11 |
---|---|
[LeetCode/Easy] 627. Swap Salary (0) | 2023.05.25 |
[LeetCode/Easy] 619. Biggest Single Number (0) | 2023.05.25 |
[LeetCode/Easy] 511. Game Play Analysis I (0) | 2023.05.23 |
[LeetCode/Easy] 2356. Number of Unique Subjects Taught by Each Teacher (0) | 2023.05.02 |