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

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

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
)
全部评论

相关推荐

03-30 19:30
石家庄学院 Java
野蛮的柯基在游泳:都能入股了,还得是Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务