[TIL] 23.04.13

문종현·2023년 4월 13일
0

TIL

목록 보기
105/119
post-custom-banner

👉 오늘 한 일

  • 책 집필 - 편집 툴 적용
  • 해커랭크 SQL

해커랭크 SQL

1. Contest Leaderboard 💡

SELECT hacker_id,
    MAX(name),
    SUM(score) score
FROM(
    SELECT h.hacker_id,
        MAX(h.name) name,
        MAX(score) score
    FROM hackers h
    JOIN submissions s
        ON h.hacker_id = s.hacker_id
    GROUP BY h.hacker_id, s.challenge_id) max_score
GROUP BY hacker_id
HAVING SUM(score) > 0
ORDER BY score DESC, hacker_id
profile
자라나라 새싹새싹🌱
post-custom-banner

0개의 댓글