select 
  b.exp_number,
  a.exp_type,
  b.claims_cost
from 
  express_tb as a
join 
  exp_cost_tb as b
on 
  a.exp_number=b.exp_number
where 
  b.claims_cost is not null
order by 
  b.claims_cost desc;