Tags
- delete
- 완전검색
- M:N
- 쟝고
- 트리
- Queue
- outer join
- N:1
- 이진트리
- distinct
- 통계학
- drf
- Tree
- SQL
- 스택
- 백트래킹
- 큐
- update
- DB
- ORM
- 뷰
- 그리디
- regexp
- count
- stack
- Django
- migrations
- create
- Article & User
- 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 | 31 |
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 |