Tags
- 뷰
- count
- distinct
- Queue
- migrations
- update
- Tree
- SQL
- ORM
- drf
- delete
- 스택
- regexp
- stack
- 완전검색
- DB
- Article & User
- outer join
- 쟝고
- create
- Django
- 트리
- N:1
- 백트래킹
- 이진트리
- 통계학
- 큐
- M:N
- 그리디
- Vue
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Notice
Recent Posts
Link
데이터 분석 기술 블로그
Product Sales Analysis III _ Medium. LeetCode 본문
SELECT product_id,
year AS first_year,
quantity,
price
FROM Sales
WHERE (product_id, year) IN
(SELECT product_id, MIN(year) FROM Sales GROUP BY product_id);
'SQL > 문제풀이' 카테고리의 다른 글
Customers Who Bought All Products _ Medium.LeetCode * (0) | 2025.01.06 |
---|---|
Consecutive Numbers _ Medium.LeetCode (0) | 2025.01.05 |
Immediate Food Delivery II _ Medium. LeetCode * (2) | 2025.01.03 |
Game Play Analysis IV _ Medium. LeetCode * (0) | 2025.01.02 |
Monthly Transactions I _ Medium. LeetCode * (0) | 2025.01.01 |