데이터 분석 22일차
https://leetcode.com/problems/percentage-of-users-attended-a-contest/


- 정답코드
select contest_id, round((count(distinct user_id) / (select count(user_id) from users))* 100, 2) percentage from register group by contest_id order by percentage desc, contest_id
둘째날 한일
이상치 분류 후 정상 데이터 사용하여 매출 데이터 탐색 시작