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

每个商品的销售总额

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

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

使用with可以使代码逻辑步骤更清晰,参考官方解法

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务