
select restaurant_name,
cuisine_type,
case when cuisine_type = 'korean' then'Han-sik'
when cuisine_type ='japanese'or 'chinese' then 'Asia'
else 'etc'
end cuisine_type
from food_orders
'퀴진 타입이 일식 또는 중식일 경우에는 아시아라고 표시한다' 라고 생각해서 위와 같이 코드를 짰습니다.
in 을 사용하는 것은 이해가 되는데, 왜 or을 사용하면 안되는 건가요?
