select
round(
avg(
timestampdiff (minute, a.create_time, b.out_time) / 60
),
3
) as time
from
express_tb a
join exp_action_tb b using (exp_number)

select
round(
avg(
timestampdiff (minute, a.create_time, b.out_time) / 60
),
3
) as time
from
express_tb a
join exp_action_tb b using (exp_number)