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

每个商品的销售总额

https://www.nowcoder.com/practice/6d796e885ee44a9cb599f47b16a02ea4

select product_name,
       sum(quantity) as total_sales,
       rank() over(partition by category order by sum(quantity)desc) as category_rank
from(
    select name as product_name,
        category,
        quantity
    from products p
    inner join orders o on p.product_id=o.product_id
) p_o
group by category,product_name  
order by category,total_sales desc


全部评论

相关推荐

昨天 11:07
河南大学 Java
宇宙厂 测开 n*15
丘丘给个offer:有后选后
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务