Skip to content

Commit

Permalink
SQL/SELECT: 과일로 만든 아이스크림 고르기 (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
sieunnnn committed Nov 28, 2023
1 parent ba43914 commit 189600e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/programmers/sql/SELECT_08.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
SELECT F.FLAVOR
FROM FIRST_HALF AS F
INNER JOIN ICECREAM_INFO AS I
ON F.FLAVOR = I.FLAVOR
WHERE F.TOTAL_ORDER > 3000
AND I.INGREDIENT_TYPE = 'fruit_based'

0 comments on commit 189600e

Please sign in to comment.