728x90
https://www.hackerrank.com/challenges/full-score/problem
select h.hacker_id, h.name
from submissions s
left join hackers h on s.hacker_id = h.hacker_id
left join challenges c on c.challenge_id = s.challenge_id
left join difficulty d on d.difficulty_level = c.difficulty_level
where s.score = d.score
and d.difficulty_level = c.difficulty_level
group by h.hacker_id, h.name
having count(h.hacker_id) >= 2
order by count(h.hacker_id) desc, h.hacker_id asc;
728x90
'데이터 분석 > [Python]백준.프로그래머스' 카테고리의 다른 글
[백준] 2750 수 정렬하기 (0) | 2022.01.03 |
---|---|
[백준] 2869 달팽이는 올라가고 싶다. (0) | 2022.01.03 |
[HackerRank] The Report (0) | 2021.11.05 |
[프로그래머스] 우유와 요거트가 담긴 장바구니 (0) | 2021.10.02 |
[프로그래머스] 헤비 유저가 소유한 장소 (0) | 2021.10.02 |