select
    exp_number,
    exp_type,
    claims_cost
from express_tb
join exp_cost_tb using (exp_number)
where claims_cost is not null
order by claims_cost desc