题解 | 统计用户从访问到下单的转化率

统计用户从访问到下单的转化率

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

with a as(
    select  date(order_time) as ot,count(distinct user_id) as order_number
    from order_tb 
    group by date(order_time)
),
b as(
    select date(visit_time) as vt,count(distinct user_id) as v_number
    from visit_tb
    group by date(visit_time)
)
select a.ot as date,
    concat(round(order_number*1.0/v_number*100,1),'%') as cr
from a join b on a.ot=b.vt
order by date

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

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