with do as (select distinct user_id,date(order_time) ordate from order_tb), dv as (select distinct user_id,date(visit_time) vdate from visit_tb) select t3.vidate as date, concat(round((sum(case when t3.下单时间 is null then 0 else 1 end)/count(*))*100,1),'%') as cr from (select dv.user_id,dv.vdate as vi...