참고링크 Contest Leaderboard | HackerRank Generate the contest leaderboard. www.hackerrank.com Q> 해커아이디, 해커 이름, 스코어 점수 나타내기 C> - 조건은 hacker_id와 Challenge_id를 그룹바이 기준으로 최대값 찾기 H> select hacker_id , challenge_id , max(score) score from submissions group by hacker_id, challenge_id A> with mx as (select hacker_id, challenge_id ,max(score) score from submissions group by hacker_id, challenge_id ), ss as ..