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

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

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

with t1 as(
select 
    date(order_time) as order_time,
    count(distinct user_id) as order_nums
from order_tb 
group by date(order_time)
),
t2 as(
select 
    date(visit_time) as visit_time,
    count(distinct user_id) as visit_nums
from visit_tb 
group by date(visit_time)
)
select 
    order_time as date,
    concat(round((order_nums/visit_nums)*100,1),'%') as cr 
from t1 inner join t2 on t1.order_time = t2.visit_time
order by order_time

全部评论

相关推荐

12-06 16:17
济宁学院 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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