题解 | #某店铺的各商品毛利率及店铺整体毛利率#

某店铺的各商品毛利率及店铺整体毛利率

http://www.nowcoder.com/practice/65de67f666414c0e8f9a34c08d4a8ba6

全部答案
(select
'店铺汇总' as product_id,
concat(round((1-sum(t2.in_price*t1.cnt)/sum(t1.price*t1.cnt))*100,1),'%') as profit_rate
from
tb_order_detail t1 left join
tb_product_info t2 on
t1.product_id = t2.product_id left join
tb_order_overall t3 on
t1.order_id = t3.order_id
where year(event_time) >=2021
and month(event_time) >= 10
and t2.shop_id=901
group by product_id)
union all
(select
t1.product_id as product_id,
concat(round((1-sum(t2.in_price*t1.cnt)/sum(t1.price*t1.cnt))*100,1),'%') as profit_rate
from
tb_order_detail t1 left join
tb_product_info t2 on
t1.product_id = t2.product_id left join
tb_order_overall t3 on
t1.order_id = t3.order_id
where year(event_time) >=2021
and month(event_time) >= 10
and t2.shop_id=901
group by t1.product_id
having ((1-sum(t2.in_price*t1.cnt)/sum(t1.price*t1.cnt))*100) > 24.9
order by t1.product_id)
 

全部评论

相关推荐

霁华Tel:秋招结束了,好累。我自编了一篇对话,语言别人看不懂,我觉得有某种力量在控制我的身体,我明明觉得有些东西就在眼前,但身边的人却说啥也没有,有神秘人通过电视,手机等在暗暗的给我发信号,我有时候会突然觉得身体的某一部分不属于我了。面对不同的人或场合,我表现出不一样的自己,以至于都不知道自己到底是什么样子的人。我觉得我已经做的很好,不需要其他人的建议和批评,我有些时候难以控制的兴奋,但是呼吸都让人开心。
点赞 评论 收藏
分享
三年之期已到我的offer快到碗里来:9硕都比不上9本
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务