
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
왜 실행이 안되는지 찾아봐도 잘 모르겠습니다 ㅜㅜ

작성한 코드 및 에러 메세지
select restaurant_name,
case when sum_quan =< 5 then 0.1
when sum_quan > 15 and sum_price >=300000 then 0.005
else 0.01
end ratio_discount
from
(
select restaurant_name, sum(quantity) as sum_quan, sum(price) as sum_price
from food_orders
group by 1
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 '=< 5 then 0.1
when sum_quan > 15 and sum_price >=300000 then 0.005
else 0.' at line 2
Error position: line: 1
