Skip to content

Programmers 가장 비싼 상품 구하기 SQL 문제 풀이

Updated: at 오후 02:41

Table of contents

Open Table of contents

들어가며

이 문제는 집계 함수 중 MAX를 사용할줄 아는지 묻는 문제였다.

SQL Query

SELECT MAX(price) as MAX_PRICE
FROM product;