题解 | 查询出不同类别商品中,销售金额排名前三且利润率超过 20%的商品信息

查询出不同类别商品中,销售金额排名前三且利润率超过 20%的商品信息

https://www.nowcoder.com/practice/3d70132f4c14442cada25fec0198e743

select
    product_id,
    product_name,
    category_id,
    sales_amount,
    profit_rate
from(
    select
        s.product_id,
        product_name,
        category_id,
        sales_amount,
        round((sales_amount-cost_amount)/sales_amount, 2) as profit_rate,
        rank() over(partition by category_id order by sales_amount desc) as rk
    from sales_and_profit s 
    left join product_category p 
    on s.product_id = p.product_id
) aa
where rk <= 3 and profit_rate > 0.2
order by category_id, sales_amount desc, product_id
;

全部评论

相关推荐

03-12 15:35
嘉应学院 Python
快说谢谢牛牛精灵:说不定就是下一个寒武纪!
点赞 评论 收藏
分享
肖先生~:大一点得到公司面试更能学到点东西
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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