select cust_id,order_num
from Orders
# 注意审题:                    订单日期倒序排列
order by cust_id asc,order_date desc;
//					order by + 列(select 后可以没有)