728x90
https://school.programmers.co.kr/learn/courses/30/lessons/131123
728x90
SELECT food_type, rest_id, rest_name, favorites
FROM rest_info
WHERE(food_type, favorites) IN (
SELECT food_type, MAX(favorites)
FROM rest_info
GROUP BY food_type
)
ORDER BY food_type DESC;
728x90
'Problem Solving > Programmers' 카테고리의 다른 글
[프로그래머스, 293257] 물고기 종류 별 잡은 수 구하기 (mysql) (0) | 2024.10.16 |
---|---|
[프로그래머스, 59034] 모든 레코드 조회하기 (mysql) (2) | 2024.10.15 |
[프로그래머스, 151136] 평균 일일 대여 요금 구하기 (mysql) (4) | 2024.10.11 |
[프로그래머스, 133025] 과일로 만든 아이스크림 고르기 (mysql) (2) | 2024.10.09 |
[프로그래머스, 42578] 의상 (java) (0) | 2024.10.09 |