Skip to content

Commit 636e454

Browse files
committed
[level 2] Title: 성분으로 구분한 아이스크림 총 주문량, Time: 0.00 ms, Memory: 0.0 MB -BaekjoonHub
1 parent 9c3b206 commit 636e454

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

프로그래머스/2/133026. 성분으로 구분한 아이스크림 총 주문량/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Empty
1616

1717
### 제출 일자
1818

19-
2025년 06월 28일 19:00:35
19+
2025년 11월 10일 10:54:45
2020

2121
### 문제 설명
2222

Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
-- 코드를 입력하세요
2-
SELECT i.ingredient_type, sum(f.total_order) as total_order
1+
select
2+
i.ingredient_type,
3+
sum(total_order)
34
from icecream_info as i
45
join first_half as f
5-
ON i.flavor = f.flavor
6-
group by i.ingredient_type
7-
order by total_order;
6+
on i.flavor = f.flavor
7+
group by i.ingredient_type;

0 commit comments

Comments
 (0)