문제 링크입니다: https://school.programmers.co.kr/learn/courses/30/lessons/133026
프로그래머스
코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.
programmers.co.kr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 코드를 입력하세요 | |
SELECT | |
INGREDIENT_TYPE, | |
SUM(TOTAL_ORDER) AS TOTAL_ORDER | |
FROM | |
FIRST_HALF | |
INNER JOIN | |
ICECREAM_INFO | |
ON | |
FIRST_HALF.FLAVOR = ICECREAM_INFO.FLAVOR | |
GROUP BY | |
INGREDIENT_TYPE | |
ORDER BY | |
TOTAL_ORDER ASC |

개발환경: Programmers IDE
지적, 조언, 질문 환영합니다! 질문 남겨주세요~
반응형
'알고리즘 > programmers' 카테고리의 다른 글
[Programmers] 인사고과 (5) | 2023.01.22 |
---|---|
[Programmers] 시소 짝궁 (4) | 2023.01.20 |
[Programmers] 평균 일일 대여 요금 구하기 (0) | 2023.01.17 |
[Programmers] 자동차 종류 별 특정 옵션이 포함된 자동차 수 구하기 (2) | 2023.01.17 |
[Programmers] 자동차 대여 기록에서 장기/단기 대여 구분하기 (0) | 2023.01.16 |