You are viewing a single comment's thread. Return to all comments →
SELECT h.hacker_id, h.name, SUM(max_scores.max_score) AS total_score FROM hackers h JOIN ( SELECT hacker_id, challenge_id, MAX(score) AS max_score FROM Submissions GROUP BY hacker_id, challenge_id ) AS max_scores ON h.hacker_id = max_scores.hacker_id GROUP BY h.hacker_id, h.name HAVING SUM(max_scores.max_score) != 0 ORDER BY total_score DESC, h.hacker_id;
Seems like cookies are disabled on this browser, please enable them to open this website
Contest Leaderboard
You are viewing a single comment's thread. Return to all comments →