题解 |#统计21年10月退货率不大于0.5的商品各项指标#

统计2021年10月每个退货率不大于0.5的商品各项指标

https://www.nowcoder.com/practice/cbf582d28b794722becfc680847327be

参考代码

SELECT product_id,
    if(count(*)=0,0,round(sum(if_click)/count(*),3))ctr,
    if(sum(if_click)=0,0,round(sum(if_cart)/sum(if_click),3))cart_rate,
    if(sum(if_cart)=0,0,round(sum(if_payment)/sum(if_cart),3))payment_rate,
    if(sum(if_payment)=0,0,round(sum(if_refund)/sum(if_payment),3))refund_rate
FROM tb_user_event
WHERE year(event_time)=2021 AND month(event_time)=10
GROUP BY product_id
HAVING refund_rate<=0.500
ORDER BY product_id ASC;

运行结果


全部评论

相关推荐

11-27 17:08
已编辑
牛客_产品运营部_私域运营
腾讯 普通offer 24k~26k * 15,年包在36w~39w左右。
点赞 评论 收藏
分享
小红书 后端选手 n*16*1.18+签字费期权
点赞 评论 收藏
分享
joe2333:怀念以前大家拿华为当保底的日子
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务