
3주차 left join 문제중 강의와 동일하게 진행해도 'round(count(pu.point_user_id)/count(u.user_id),2) as ratio
from users u left' 부분에서 에러가 납니다! 확인부탁드립니다.

화면 전체를 캡처해 주시면, 튜터님들이 빠르게 상황을 이해할 수 있어요.
작성한 코드 및 에러 메세지
select count(pu.point_user_id) as pnt_user_cnt,
count(u.user_id) as tot_user_cnt
round(count(pu.point_user_id)/count(u.user_id),2) as ratio
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'
SQL Error [1064] [42000]: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'round(count(pu.point_user_id)/count(u.user_id),2) as ratio
from users u
left' at line 3
