Milky's note

[sovlesql] 지역별 주문의 특징 본문

SQL/SQL 코딩 테스트-Solvesql

[sovlesql] 지역별 주문의 특징

밀뿌 2022. 5. 15. 19:34

https://solvesql.com/problems/characteristics-of-orders/

 

solvesql

© Copyright 2021-2022 solvesql.com

solvesql.com

 

문제는 위와 같다.

지역별 각 카테고리 별로 얼마나 많은 양의 상품이 팔렸는 지 조회하느 쿼리인데 계속 오류가 나서 뭐지 했는데 알고보니

출력해야하는 컬럼 이름이 region이 아니고 Region으로 해주어야해서 이다 . 

컬럼 명 출력시에 주의를 더 기울여야겠다.

 

그리고 주의해야할 점은 물건을 사는데 똑같은 사람이 몇 번 사는 경우가 있어서 중복 제거를 해준 값을 count 해주어야한다.

 

select region as Region,
count(distinct(case when category='Furniture' then order_id end)) as 'Furniture',
count(distinct(case when category='Office Supplies' then order_id end)) as 'Office Supplies',
count(distinct(case when category='Technology' then order_id end)) as 'Technology'
from records
group by region
order by region;
Comments