과목별로 시작하지 않은 유저들을 세어보기
select c.course_id, c.title, count(*) as cnt from courses c
inner join enrolleds e on c.course_id = e.course_id
where e.is_registered = 0
group by c.title
이렇게 입력해도 답안과 똑같이 나왔는데요.
제가 어떤 부분에서 잘못생각하고 한건지 궁금합니다...!