๋ฐ์ํ
https://school.programmers.co.kr/learn/courses/30/lessons/133025
-- ์ฝ๋๋ฅผ ์
๋ ฅํ์ธ์
SELECT FIRST_HALF.FLAVOR
from FIRST_HALF join ICECREAM_INFO on FIRST_HALF.FLAVOR = ICECREAM_INFO.FLAVOR
where TOTAL_ORDER > 3000 and ICECREAM_INFO.INGREDIENT_TYPE = 'fruit_based'
order by TOTAL_ORDER desc
๋ฐ์ํ