
'네이버 이메일을 사용하여 앱개발 종합반을 신청한 주문의 결제수단별 주문건수 세어보기' 숙제에서
select payment_method , COUNT(*) from orders
where course_title = '앱개발 종합반'
like '%@naver.com'
group by payment_method;
위와 같이 하면 아래와 같이 결과가 출력되는데

질문1) 해설영상과 출력값이 다른이유가 무엇인지 궁금합니다.
질문2) 두 조건을 and로 안 묶어서 그런가 싶어서 like앞에 and를 추가했더니 syntax오류가 떴어요. 문법적으로 and는 like 앞에 올 수 없어서 그런가요??

작성한 코드 및 에러 메세지
select payment_method , COUNT(*) from orders
where course_title = '앱개발 종합반' and like '%@naver.com'
group by payment_method;
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 'like '%@naver.com'
group by payment_method' at line 2
Error position: line: 1
