728x90
https://school.programmers.co.kr/learn/courses/30/lessons/144855
728x90
SELECT category, SUM(sales) as total_sales
FROM book
INNER JOIN book_sales
ON book.book_id = book_sales.book_id
WHERE sales_date LIKE '2022-01%'
GROUP BY category
ORDER BY category
728x90
'Problem Solving > Programmers' 카테고리의 다른 글
[프로그래머스, 144854] 조건에 맞는 도서와 저자 리스트 출력하기 (mysql) (1) | 2024.04.22 |
---|---|
[프로그래머스, 131533] 상품 별 오프라인 매출 구하기 (mysql) (0) | 2024.04.01 |
[프로그래머스, 151137] 자동차 종류 별 특정 옵션이 포함된 자동차 수 구하기 (mysql) (0) | 2024.03.22 |
[프로그래머스, 132201] 12세 이하인 여자 환자 목록 출력하기 (mysql) (0) | 2024.03.20 |
[프로그래머스, 133024] 인기있는 아이스크림 (mysql) (0) | 2024.03.19 |