select city city ,driver_id driver_id ,round(avg(grade),1) avg_grade ,round(count(driver_id)/count(distinct substring(order_time,1,10)),1) avg_order_num ,round(sum(mileage)/count(distinct substring(order_time,1,10)),3) avg_mileage from tb_get_car_order t2 left join ...