题解 | 查询产生理赔费用的快递信息
查询产生理赔费用的快递信息
https://www.nowcoder.com/practice/d22eab8a0001443fba7c5757e7cbcaea
select a.exp_number, exp_type, claims_cost from express_tb a join exp_cost_tb b on a.exp_number=b.exp_number where claims_cost is not null order by claims_cost desc
查看7道真题和解析