题解 | 商品价格排名

商品价格排名

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

select
    t.product_id,
    t.product_name,
    t.type,
    t.price
from
    (select
        product_id,
        price,
        type,
        product_name,
        rank() over(partition by type order by price desc) as rk
    from
        product_info) t
where 
    rk <= 2
order by 
    t.price desc,t.product_name
limit 3

全部评论

相关推荐

叁六玖:你看,最后不是让你加油,就是鼓励你,还祝福你求职顺利。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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