select 
t2.exp_number exp_number
,t2.exp_type exp_type
,t1.claims_cost claims_cost
from exp_cost_tb t1
join express_tb t2
on t1.exp_number = t2.exp_number
where t1.claims_cost > 0
order by 3 desc