Level : SQL (Intermediate) 💡 Key note 1. Score가 100이 무조건 만점이 아님. 반드시 Difficulty table을 활용해야 함. 2. 만점을 2번 이상 받은 해커를 출력함. (문제에서 More than one challenge 부분) -- hacker_id, name을 출력함 -- 이 때 하나 이상의 challenge에서 만점을 받은 hacker를 출력함 -- 이 때 만점 받은 challenge의 개수가 높은 순으로 출력함 -- 만점받은 개수가 동일한 해커에 대해서는 hacker_id에 대해 ascending ordering 함 select subquery.hacker_id, subquery.name from ( select sub.hacker_id, hac.na..