https://www.hackerrank.com/challenges/challenges/problem?isFullScreen=true Challenges | HackerRankPrint the total number of challenges created by hackers.www.hackerrank.com강의를 듣기 전 내 풀이 1. 아이디별로 만든 챌린지 수를 확인할 수 있는 테이블을 만들어줌SELECT hacker_id, COUNT(challenge_id) AS challenges_createdFROM ChallengesGROUP BY hacker_id 이 테이블을 이용해서 추후 조건에 사용될 challenges_created의 MAX 값을 구해주는 서브쿼리를 또 작성해야 했기에, WITH문을 사용..