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

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

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

WITH t0 AS ( SELECT *, price * cnt AS t_price FROM tb_order_detail ),
t1 as (
SELECT
	p.product_id,
	in_price * sum( cnt ) as cb,
	sum( t_price ) as lr,
	concat( round(( 1-in_price * sum( cnt )/ sum( t_price ))* 100, 1 ), '%' ) AS profit_rate 
FROM
	tb_product_info p
	LEFT JOIN t0 ON p.product_id = t0.product_id
	LEFT JOIN tb_order_overall o ON o.order_id = t0.order_id 
WHERE
	shop_id = 901 
	AND event_time >= '2021-10-01' 
	AND STATUS = 1 
GROUP BY
	1,cnt,in_price,t_price
order by 2)
	select '店铺汇总' as product_id,concat(round((1-(sum(cb)/sum(lr)))*100,1),'%') as profit_rate from t1
union  
(SELECT product_id, profit_rate
FROM t1
WHERE CAST(REPLACE(profit_rate, '%', '') AS DECIMAL(5,2)) > 25.0
order by 2)

全部评论

相关推荐

程序员花海:实习和校招简历正确格式应该是教育背景+实习+项目经历+个人评价 其中项目经历注意要体现业务 实习经历里面的业务更是要自圆其说 简历模板尽可能保持干净整洁 不要太花哨的
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

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