题解 | #统计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
全部评论

相关推荐

程序员牛肉:主要是因为小厂的资金本来就很吃紧,所以更喜欢有实习经历的同学。来了就能上手。 而大厂因为钱多,实习生一天三四百的就不算事。所以愿意培养你,在面试的时候也就不在乎你有没有实习(除非是同级别大厂的实习。) 按照你的简历来看,同质化太严重了。项目也很烂大街。 要么换项目,要么考研。 你现在选择工作的话,前景不是很好了。
点赞 评论 收藏
分享
04-25 18:13
五邑大学 Java
后来123321:大二两段实习太厉害了,我现在大二连面试都没有
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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