본문 바로가기

algorithm

[programmers] MySQL - Lv.1 가장 비싼 상품 구하기 (sum, max, min)

문제

 

 

 

 

 

풀이

 

SELECT max(price) max_price
from product;