题解 | 哪些产品在特定时间段内表现最为出色

哪些产品在特定时间段内表现最为出色

https://www.nowcoder.com/practice/866a4614615b43a29750537ede4bf0c8

select
    product_id,
    product_name,
    total_sales_amount,
    total_sales_quantity
from (
    select
        p.product_id,
        product_name,
        sum(sales_amount) total_sales_amount,
        sum(sales_quantity) total_sales_quantity,
        rank() over(order by sum(sales_quantity) desc) rk
    from 
        products p 
    left join sales_records s on p.product_id=s.product_id
    where sales_date between '2024-01-01' and '2024-12-31'
    group by p.product_id, product_name
    order by p.product_id
) sub
where rk = 1

全部评论

相关推荐

07-17 11:50
门头沟学院 Java
投递腾讯等公司7个岗位
点赞 评论 收藏
分享
每晚夜里独自颤抖:要求太多的没必要理
点赞 评论 收藏
分享
07-18 18:44
已编辑
中山职业技术学院 Java
投递文远知行等公司9个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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