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

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

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


--先把销售金额和利润率求出来,然后排序筛选(一定排序是category_id)
with tiaojian as (
select 
py.product_id,
py.product_name,
py.category_id,
sum(sales_amount) as sales_amount,
sum(sales_amount-cost_amount)/sum(sales_amount) as profit_rate
from product_category py 
inner join sales_and_profit st on 
py.product_id=st.product_id
group by py.product_id
)


select 
product_id,
product_name,
category_id,
sales_amount,
profit_rate
from(
select 
product_id,
product_name,
category_id,
sales_amount,
round(profit_rate,2) as profit_rate,
row_number()over(partition by category_id  order by 
sales_amount desc) as pt
from tiaojian
) as  t 
where
t.pt<=3
and 
profit_rate>0.2
order by category_id,sales_amount desc,product_id



全部评论

相关推荐

用微笑面对困难:你出于礼貌叫了人一声大姐,大姐很欣慰,她真把你当老弟
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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