Julia just finished conducting a coding contest, and she needs your help assembling the leaderboard! Write a query to print the respective hacker_id and name of hackers who achieved full scores for more than one challenge. Order your output in descending order by the total number of challenges in which the hacker earned a full score. If more than one hacker received full scores in same number of challenges, then sort them by ascending hacker_id.
Input Format
The following tables contain contest data:
Sample Input
Hackers Table:
Difficulty Table:
Challenges Table:
Submissions Table:
Sample Output
90411 Joe
Explanation
Hacker 86870 got a score of 30 for challenge 71055 with a difficulty level of 2, so 86870 earned a full score for this challenge.
Hacker 90411 got a score of 30 for challenge 71055 with a difficulty level of 2, so 90411 earned a full score for this challenge.
Hacker 90411 got a score of 100 for challenge 66730 with a difficulty level of 6, so 90411 earned a full score for this challenge.
Only hacker 90411 managed to earn a full score for more than one challenge, so we print the their hacker_id and name as space-separated values.
select
Submissions.hacker_id,
Hackers.name
from Submissions
inner join Hackers on Submissions.hacker_id = Hackers.hacker_id
inner join Challenges on Submissions.challenge_id = Challenges.challenge_id
inner join Difficulty on Challenges.difficulty_level = Difficulty.difficulty_level
where Submissions.score = Difficulty.score
group by Submissions.hacker_id, Hackers.name having count(Submissions.hacker_id) > 1
order by count(Submissions.hacker_id) desc, Submissions.hacker_id