Tags
- create
- 그리디
- 쟝고
- 백트래킹
- delete
- migrations
- Queue
- drf
- update
- N:1
- Article & User
- ORM
- outer join
- Django
- SQL
- distinct
- regexp
- 이진트리
- 트리
- DB
- Vue
- M:N
- 스택
- 통계학
- Tree
- 큐
- stack
- 완전검색
- 뷰
- count
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Notice
Recent Posts
Link
데이터 분석 기술 블로그
Percentage of Users Attended a Contest _ Easy. LeetCode * 본문
Solution
SELECT contest_id, ROUND(COUNT(contest_id) * 100 / (SELECT COUNT(*) FROM Users), 2) AS percentage
FROM Register
GROUP BY contest_id
ORDER BY percentage DESC, contest_id ASC;
Users에서 총개수를 구해야 한다는 것은 알고 있었는데 JOIN이 아니라 어떤 식으로 구할지를 몰라서 확인해 보니 총 개수 구하는 부분에서 SQL문을 넣어서 사용하면 되었다.
'SQL > 문제풀이' 카테고리의 다른 글
Queries Quality and Percentage _ Easy. LeetCode * (0) | 2024.10.12 |
---|---|
Weather Observation Station 11 _ Easy. HackerRank (0) | 2024.10.11 |
Weather Observation Station 10 _ Easy. HackerRank (0) | 2024.10.09 |
Project Employees I _ Easy. LeetCode (0) | 2024.10.08 |
Weather Observation Station 9 _ Easy. HackerRank (0) | 2024.10.07 |