with workday as (select * from tb_get_car_record where weekday(event_time) between 0 and 4 ), info as (select finish_time,(case when time(event_time) >='07:00:00' and time(event_time)<'09:00:00' then '早高峰' when time(event_time) >='09:00:00' and time(event_time)<'17:00:00' then '工作时间' wh...