-- 使用两个元组进行排序
select cust_id,order_num from Orders order by cust_id asc,order_date desc;

按照题目要求,首先对cust_id进行升序排列asc, 然后对时间进行降序排列desc。两个排序有先后要求,使用逗号分隔。