select 
  round(avg(timestampdiff(minute,a.create_time,b.out_time)/60),3) as time 
from 
  express_tb as a 
join 
  exp_action_tb as b
on
  a.exp_number=b.exp_number
where 
  b.out_time is not null