일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- TRUNCATE
- not in
- 머신러닝
- 그로스해킹
- SUM
- SQL
- 결측값
- 파이썬
- 다중 JOIN
- Round
- join
- having
- Oracle
- PostgreSQL
- GROUPBY
- 데이터분석
- 전처리
- solvesql
- Limit
- 프로그래머스
- MySQL
- SQLite
- hackerrank
- pandas
- airflow 설치
- 데이터리안 웨비나
- 데이터시각화
- matplotlib
- airflow.cfg
- seaborn
Archives
- Today
- Total
Milky's note
[solvesql] 가구 판매의 비중이 높았던 날 찾기 본문
https://solvesql.com/problems/day-of-furniture/
문제는 위와 같다.
가구가 팔린 수와 비율을 구해주면되는데 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;
'SQL > SQL 코딩 테스트-Solvesql' 카테고리의 다른 글
[sovlesql] 지역별 주문의 특징 (0) | 2022.05.15 |
---|---|
[sovlesql] 복수 국적 메달 수상한 선수 찾기 (0) | 2022.05.15 |
[sovlesql] 배송 예정일 예측 성공과 실패 (0) | 2022.05.15 |
Comments