【思路一】 分别统计不同的结果,然后将结果union,但是不知道为啥只能过一半的实例【????】 以下是错误写法!!! with tb as (select driver_id ,grade from tb_get_car_order where date_format(order_time,'%Y-%m') = '2021-10' and driver_id in (select driver_id from tb_get_car_order where fare is null) and grade is not null ) (select driver_id ,round(avg(gr...