본문 바로가기

algorithm

[programmers] MySQL - Lv.2 성분으로 구분한 아이스크림 총 주문량 (group by)

문제

 

 

 

 

풀이

 

SELECT b.ingredient_type, sum(a.total_order) TOTAL_ORDER
from first_half a join icecream_info b
     on a.flavor = b.flavor
group by b.ingredient_type
order by TOTAL_ORDER