题解 | #每个供应商成本最低的产品#

每个供应商成本最低的产品

https://www.nowcoder.com/practice/f0679d06b50049499691e12a435de8d8

# select 

#     vend_id,

#     min(prod_price) as cheapest_item

# from Products

# group by vend_id

# order by cheapest_item

select 

    vend_id,

    prod_price as cheapest_item

from

(

    select 

        vend_id,

        prod_price,

        row_number() over(partition by vend_id order by prod_price) rn

    from Products

)t1

where rn = 1

order by cheapest_item

全部评论

相关推荐

头像
09-29 16:18
门头沟学院 Java
点赞 评论 收藏
分享
10-25 02:13
门头沟学院 C++
牛客7351937293号:8.27笔试10.22评估
投递小米集团等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务