
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
강의 내용 따라서 ratio 값을 구하고 있는데 똑같이 따라했는데 에러가 떠요 ㅠㅠ
보고 계신 화면

전체를 캡처해 주시면, 튜터님들이 빠르게 상황을 이해할 수 있어요.
select count(pu.point_user_id) as pnt_user_cnt,
count(u.user_id) as tot_user_cnt
count(pu.point_user_id)/count(u.user_id)
from users u
left join point_users pu on u.user_id = pu.user_id
where u.created_at between '2020-07-10' and '2020-07-20'
