题解 | #计算商城中2021年每月的GMV#

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

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

select '店铺汇总' product_id, concat(round((1 - sum(cntin_price)/sum(cntprice))*100,1),'%') profit_rate from tb_order_detail t_d join tb_product_info t_i on t_d.product_id = t_i.product_id join tb_order_overall t_o on t_d.order_id = t_o.order_id where shop_id = 901 and date(event_time) >= '2021-10-01'

union

select product_id, concat(profit_rate,'%') profit_rate from ( select product_id, ROUND(100 * (1 - SUM(in_pricecnt) / SUM(pricecnt)), 1) profit_rate from ( select t_d.product_id, in_price, price, cnt from tb_order_detail t_d join tb_product_info t_i on t_d.product_id = t_i.product_id join tb_order_overall t_o on t_d.order_id = t_o.order_id where shop_id = 901 and date(event_time) >= '2021-10-01')t1 group by t1.product_id having profit_rate > 24.9 ORDER BY product_id )t2

全部评论

相关推荐

字节 飞书绩效团队 (n+2) * 15 + 1k * 12 + 1w
点赞 评论 收藏
分享
hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
10-24 13:36
门头沟学院 Java
Zzzzoooo:更新:今天下午有hr联系我去不去客户端,拒了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务