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

这种真的是真题么。。