
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
아래 sql 구문이 오류로 조회가 불가한데요. 어느 부분이 문제인 걸까요?

작성한 코드 및 에러 메세지
select case when (age between 10 and 19) and gender='male' then '10대 남성',
when (age between 10 and 19) and gender='female' then '10대 여성',
when (age between 20 and 29) and gender='male' then '20대 남성',
when (age between 20 and 29) and gender='female' then '20대 여성' end "고객 분류",
name,
age,
gender
from customers c
where age between 10 and 29
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 ',
when (age between 10 and 19) and gender='female' then '10대 여�' at line 1
Error position:
Tip 1) </> 아이콘을 눌러 코드박스를 만들어 보세요.
Tip 2) Ctrl+A(맥의 경우 Command+A) 단축키로 코드를 한 번에 선택할 수 있어요!
