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