题解 | #零食类商品中复购率top3高的商品#

select 
    product_id,
    format(count(case when rk = 2 and active_date >= date_sub(max_date,interval 89 day) then uid else null end)/count(distinct uid),3) as repurchase_rate
from
(
    select 
        distinct a.product_id,uid,date_format(event_time,'%Y-%m-%d') as active_date,max_date,dense_rank() over(partition by uid,a.product_id order by date_format(event_time,'%Y-%m-%d') desc) as rk
    from tb_product_info a join tb_order_detail b on a.product_id=b.product_id and a.tag='零食'
    join tb_order_overall c on b.order_id=c.order_id
    join (select date_format(max(event_time),'%Y-%m-%d') as max_date from tb_order_overall) d
) t1 group by product_id
order by repurchase_rate desc,product_id limit 3

全部评论

相关推荐

已老实求offer😫:有点像徐坤(没有冒犯的意思哈)
点赞 评论 收藏
分享
美丽的查理斯不讲武德:包kpi的啊,感觉虾皮一点hc都没有
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务