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