๋ฐ์ํ
https://school.programmers.co.kr/learn/courses/30/lessons/133026
-- ์ฝ๋๋ฅผ ์
๋ ฅํ์ธ์
SELECT INGREDIENT_TYPE, sum(TOTAL_ORDER) as TOTAL_ORDER
from FIRST_HALF f join ICECREAM_INFO i on f.FLAVOR = i.FLAVOR
group by INGREDIENT_TYPE
๋ฐ์ํ