题解 | 商品价格排名

商品价格排名

https://www.nowcoder.com/practice/119f5b8cfe5b45779a3e1b3f4d83b341

select
    t1.product_id,
    t1.product_name,
    t1.type,
    t1.price
from
    (select
        product_id,
        product_name,
        type,
        price,
        rank() over(partition by type order by price desc) as ranking----核心是用rank而非row_number
     from 
        product_info
    ) t1
where t1.ranking<=2
order by t1.price desc,t1.product_name limit 3

全部评论

相关推荐

对空六翼:你真幸运,碰见这么好的人,不像我,秋招的时候被室友骗进cx了
实习好累,可以辞职全力准...
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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