select
b.exp_number,
a.exp_type,
b.claims_cost
from
exp_cost_tb b
join express_tb a using (exp_number)
where
b.claims_cost > 0
order by b.claims_cost desc

select
b.exp_number,
a.exp_type,
b.claims_cost
from
exp_cost_tb b
join express_tb a using (exp_number)
where
b.claims_cost > 0
order by b.claims_cost desc