728x90
https://school.programmers.co.kr/learn/courses/30/lessons/133026
728x90
SELECT ingredient_type, SUM(total_order) AS TOTAL_ORDER
FROM first_half as fh
LEFT JOIN icecream_info as ii ON fh.flavor = ii.flavor
GROUP BY ingredient_type
ORDER BY TOTAL_ORDER
728x90
'Problem Solving > Programmers' 카테고리의 다른 글
[프로그래머스, 214289] 에어컨 (java) (0) | 2024.06.27 |
---|---|
[프로그래머스, 214288] 상담원 인원 (java) (0) | 2024.06.26 |
[프로그래머스, 59044] 오랜 기간 보호한 동물(1) (mysql) (0) | 2024.06.22 |
[프로그래머스, 59043] 있었는데요 없었습니다 (mysql) (0) | 2024.04.25 |
[프로그래머스, 273709] 조건에 맞는 아이템들의 가격의 총합 구하기 (mysql) (0) | 2024.04.24 |