Milky's note

[solvesql] 가구 판매의 비중이 높았던 날 찾기 본문

SQL/SQL 코딩 테스트-Solvesql

[solvesql] 가구 판매의 비중이 높았던 날 찾기

밀뿌 2022. 5. 15. 23:26

https://solvesql.com/problems/day-of-furniture/

 

solvesql

© Copyright 2021-2022 solvesql.com

solvesql.com

 

문제는 위와 같다.

 

가구가 팔린 수와 비율을 구해주면되는데 sqlite를 많이 안써봐서 몰랐다.

나누기를 하면 정수부만 나온다는 사실을....

그래서 해결법은 다음처럼 float형으로 만들어서 진행해주면 된다.

select (a+0.00)/(b+0.00) from table;

새롭게 알게된 사실이다.

 

그래서 문제를 푼 쿼리는 다음과 같다.

select order_date,
count(distinct(case when category='Furniture' then order_id end)) as furniture,
round((count(distinct(case when category='Furniture' then order_id end))+0.00) / (count(distinct(order_id))+0.00)*100,2) as furniture_pct
from records
group by order_date
having count(distinct order_id) >= 10
and furniture_pct>= 40
order by furniture_pct desc;
Comments