Top Competitors

  • + 0 comments

    select submissions.hacker_id,hackers.name from hackers inner join submissions on hackers.hacker_id=submissions.hacker_id inner join challenges on challenges.challenge_id=submissions.challenge_id inner join difficulty on challenges.difficulty_level=difficulty.difficulty_level where difficulty.score=submissions.score group by submissions.hacker_id,hackers.name having count(hackers.name)>1 order by count(hackers.name) desc,submissions.hacker_id asc