๋ฐ์ํ
https://school.programmers.co.kr/learn/courses/30/lessons/131117
FOOD_PRODUCT์ FOOD_ORDER ํ ์ด๋ธ์์
์์ฐ์ผ์๊ฐ 2022๋ 5์์ธ ์ํ๋ค์
์ํ ID, ์ํ ์ด๋ฆ, ์ด๋งค์ถ์ ์กฐํํ๋ SQL๋ฌธ์ ์์ฑํด์ฃผ์ธ์.
์ด๋ ๊ฒฐ๊ณผ๋ ์ด๋งค์ถ์ ๊ธฐ์ค์ผ๋ก ๋ด๋ฆผ์ฐจ์ ์ ๋ ฌํด์ฃผ์๊ณ ์ด๋งค์ถ์ด ๊ฐ๋ค๋ฉด ์ํ ID๋ฅผ ๊ธฐ์ค์ผ๋ก ์ค๋ฆ์ฐจ์ ์ ๋ ฌํด์ฃผ์ธ์.
select p.product_id, p.product_name, sum(o.amount)*p.price as total_sales
from food_product p join food_order o on p.product_id = o.product_id
where date_format(o.produce_date, "%Y%m") = "202205"
group by p.product_id
order by total_sales desc, p.product_id
๋ฐ์ํ