본문 바로가기

algorithm

[programmers] MySQL - Lv.2 가격이 제일 비싼 식품의 정보 출력하기 (sum, max, min)

문제

 

 

 

 

 

풀이

 

SELECT * from food_product
order by price desc 
limit 1;