分析

关键词:order

多列排序:order by 列名1,[列名2],[列名3],...

代码

select cust_id,order_num
from Orders
order by cust_id asc,order_date desc