
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
혼자 열심히 우선 해봤습니다.
cnt_checkins/cnt_total을 넣기 전까지는 정답과 유사하게 나왔는데
해당 부분에서 막히더라고요..
혹시 방법이 있을지 문의드립니다:)

select c2.title,
count(distinct(c.user_id)) as cnt_checkins,
count(DISTINCT(o.user_id)) as cnt_total,
(cnt_checkins/cnt_total)
from checkins c
inner join orders o on c.course_id
inner join courses c2 on c.course_id
group by o.course_id
