select
    et.exp_number ,
    et.exp_type ,
    ec.claims_cost
from express_tb et 
inner join exp_cost_tb ec
on et.exp_number = ec.exp_number
where ec.claims_cost is not null 
order by ec.claims_cost desc