题解 | 统计快递运输时长
统计快递运输时长
https://www.nowcoder.com/practice/bb4196936f15424dbabe76a501186d91
select exp_type ,round(avg(timestampdiff(minute,out_time,in_time)/60),1) time from express_tb left join exp_action_tb on express_tb.exp_number = exp_action_tb.exp_number group by 1 order by 2 asc