join 연습 2 에서
select u.name, count(is_registered=0) FROM enrolleds e
join users u on u.user_id = e.user_id
group by u.name
위와 같이 쿼리를 짜면 왜 안되나요?