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

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

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

select *
from
    (select product_id
    ,(case when count(id) = 0 then 0 else round(sum(case when if_click = 1 then 1 else 0 end)/count(id),3) end )as ctr
    ,(case when sum(case when if_click = 1 then 1 else 0 end) = 0 then 0 else round(sum(case when if_cart = 1 then 1 else 0 end)/sum(case when if_click = 1 then 1 else 0 end),3) end ) as cart_rate
    ,(case when sum(case when if_cart = 1 then 1 else 0 end) = 0 then 0 else round(sum(case when if_payment = 1 then 1 else 0 end)/sum(case when if_cart = 1 then 1 else 0 end),3) end ) as payment_rate
    ,(case when sum(case when if_cart = 1 then 1 else 0 end) = 0 then 0 else round(sum(case when if_refund = 1 then 1 else 0 end)/sum(case when if_payment = 1 then 1 else 0 end),3) end ) as refund_rate
    from tb_user_event
    where date_format(event_time,'%Y-%m') = '2021-10'
    group by product_id) as T
where T.refund_rate <= 0.5
order by T.product_id
全部评论

相关推荐

07-24 13:43
门头沟学院 Java
longerluck...:我猜说的是“你真**是个天才”
投递美团等公司10个岗位
点赞 评论 收藏
分享
点赞 评论 收藏
分享
06-23 11:43
门头沟学院 Java
allin校招的烤冷...:我靠,今天中午我也是这个hr隔一个星期发消息给我。问的问题还是一模一样的😅
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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