본문 바로가기

algorithm

[programmers] MySQL - Lv.1 과일로 만든 아이스크림 고르기 (select)

문제

 

 

 

 

 

풀이

 

SELECT a.flavor
from first_half a join icecream_info b
     on a.flavor = b.flavor
where a.total_order > 3000 and
      b.ingredient_type = 'fruit_based'
order by a.total_order desc