SELECT cuisine_type, max(price), min(fo.price)
from food_orders fo
group by cuisine_type
order by min(fo.price)desc쿼리 입력 후 엔터치면 자동으로 fo가 붙는데 어떤의미인가요? 결과값에 지장이 있나요?