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

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