Today온보딩 과제 Today I Learned SQL * result 별 type 별 신청 횟수는 볼 수 있어도, 신청 인원은 중복을 제거하기 어렵다는 것을 깨달았다.한 유저가 여러번 여러개의 type 을 신청해볼 수 있고, 여러 번의 result 를 받을 수 있기 때문이다. # result 별 몇번씩 신청했는지?(합격O)WITH pass AS (SELECT DISTINCT useridFROM data_setWHERE status = '최종합격' AND course = 'Hanghae'),result_cnt AS (SELECT RESULT , count(*) total_cntFROM data_setWHERE userid IN (SELECT userid FROM pass)AND course = 'H..