题解 | 每个商品的销售总额

select 
t1.name as product_name
,sum(t2.quantity) as total_sales
,row_number() over(partition by t1.category order by category asc,sum(t2.quantity) desc) as category_rank
from products as t1
inner join orders as t2
on t1.product_id = t2.product_id
group by t1.name,t1.category;

name与类别都需要分组!

全部评论

相关推荐

2024-12-22 12:16
海南大学 供应链管理
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务