select
e.exp_number,
e.exp_type,
c.claims_cost
from express_tb e left join exp_cost_tb c
on e.exp_number=c.exp_number
where c.claims_cost is not null
order by c.claims_cost desc