
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
강사님 화면이랑 어디가 달라서 오류가 나는지 모르겠습니다.

작성한 코드 및 에러 메세지
작성한 코드
SELECT a.cuisine_type ,
a.restaurant_name ,
a.cnt_order ,
sum (a.cnt_order) over (partition by a.cuisine_type) sum_cuisine,
sum (a.cnt_order ) over (partition by a.cuisine_type order by cnt_order) cum_cuisine
from
(
select fo.cuisine_type ,
fo.restaurant_name ,
count(1) cnt_order
FROM food_orders fo
group by 1, 2
) a
order by a.cuisin_type, a.cnt_order
에러메세지
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 'over (partition by a.cuisine_type) sum_cuisine,
sum (a.cnt_order ) over ' at line 4
Error position: line: 3
작성한 코드오류 발생 시, 작성한 코드 전체와 에러 메시지를 첨부해 주세요.
Tip 1) </> 아이콘을 눌러 코드박스를 만들어 보세요.
Tip 2) Ctrl+A(맥의 경우 Command+A) 단축키로 코드를 한 번에 선택할 수 있어요!
