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

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

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

with t as (
	select tod.product_id, in_price, price, tod.cnt
	from tb_order_detail tod
	left join tb_order_overall too on tod.order_id = too.order_id
	left join tb_product_info tpi on tod.product_id = tpi.product_id
	where left(too.event_time, 7) > '2021-09' and tpi.shop_id = 901
)

select '店铺汇总', concat(round((1-sum(in_price*cnt)/sum(price*cnt))*100, 1), '%') profit_rate
from t
union all
(
	select product_id, concat(round((1-sum(in_price*cnt)/sum(price*cnt))*100, 1), '%') profit_rate
	from t
	group by product_id
	having 1-(sum(in_price*cnt)/sum(price*cnt)) > 0.249
	order by profit_rate
)
全部评论

相关推荐

07-13 14:45
南华大学 Java
点赞 评论 收藏
分享
点赞 评论 收藏
分享
05-30 12:03
山西大学 C++
offer来了我跪着...:不是骗子,等到测评那一步就知道为啥这么高工资了
点赞 评论 收藏
分享
Yki_:你要算时间成本呀,研究生两三年,博士三四年,加起来就五六年了,如果你本科去腾讯干五年,多领五年的年薪,加上公司内涨薪,可能到时候十五年总薪资也跟博士差不多
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
07-09 12:20
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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