티스토리 뷰
https://school.programmers.co.kr/learn/courses/30/lessons/131537
with a as (
select
sales_date
, product_id
, user_id
, sum(sales_amount) as sales_amount
from ONLINE_SALE
where year(sales_date) = 2022 and month(sales_date) = 3
group by 1, 2, 3
)
, b as (
select
sales_date
, product_id
, NULL as user_id
, sum(sales_amount) as sales_amount
from OFFLINE_SALE
where year(sales_date) = 2022 and month(sales_date) = 3
group by 1, 2, 3
)
, c as (
select
*
from a
union all
select
*
from b
)
select
DATE_FORMAT(SALES_DATE,'%Y-%m-%d') sales_date
, product_id
, user_id
, sales_amount
from c
order by 1, 2, 3
'프로그래밍연습 > SQL' 카테고리의 다른 글
[SQL]consecutive-numbers (0) | 2023.08.17 |
---|---|
[SQL]SecondHighestSalary_leatcode (0) | 2023.08.17 |
[SQL]가격대 별 상품 개수 구하기 (0) | 2023.08.15 |
[SQL]재구매가 일어난 상품과 회원 리스트 구하기 (0) | 2023.08.15 |
[SQL]조건에 맞는 사용자 정보 조회하기 (0) | 2023.08.14 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- hash
- 힙
- 확률
- counter
- SQL
- 파이썬
- 뇌하수체선종
- Python
- 확률분포
- 쿠싱증후군
- 통계
- random forest
- leatcode
- 군고구마
- 분당서울대병원
- 사분위수
- 상대도수
- 분산
- 프로그래머스
- neural network
- 중앙값
- Lambda
- 조건부확률
- 상관관계
- 쿠싱
- programmers
- 뇌하수체
- TensorFlow
- 코딩테스트
- 평균
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함