with a as( select a.order_id ,a.uid,event_time '开始时间',order_time,start_time, finish_time, round(timestampdiff(second,event_time,order_time)/60,1) '等待时间',round(timestampdiff(second,order_time,start_time)/60,1)'调度时间' from tb_get_car_order a join tb_get_car_record using(order_id) where dayofweek(event_...