We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c3b206 commit 636e454Copy full SHA for 636e454
2 files changed
프로그래머스/2/133026. 성분으로 구분한 아이스크림 총 주문량/README.md
@@ -16,7 +16,7 @@ Empty
16
17
### 제출 일자
18
19
-2025년 06월 28일 19:00:35
+2025년 11월 10일 10:54:45
20
21
### 문제 설명
22
프로그래머스/2/133026. 성분으로 구분한 아이스크림 총 주문량/성분으로 구분한 아이스크림 총 주문량.sql
@@ -1,7 +1,7 @@
1
--- 코드를 입력하세요
2
-SELECT i.ingredient_type, sum(f.total_order) as total_order
+select
+i.ingredient_type,
3
+sum(total_order)
4
from icecream_info as i
5
join first_half as f
- ON i.flavor = f.flavor
6
-group by i.ingredient_type
7
-order by total_order;
+on i.flavor = f.flavor
+group by i.ingredient_type;
0 commit comments