题解 | #对顾客ID和日期排序#
对顾客ID和日期排序
https://www.nowcoder.com/practice/fa4eb4880d124a4ead7a9b025fe75b70
-- 使用两个元组进行排序 select cust_id,order_num from Orders order by cust_id asc,order_date desc;
按照题目要求,首先对cust_id进行升序排列asc, 然后对时间进行降序排列desc。两个排序有先后要求,使用逗号分隔。
对顾客ID和日期排序
https://www.nowcoder.com/practice/fa4eb4880d124a4ead7a9b025fe75b70
-- 使用两个元组进行排序 select cust_id,order_num from Orders order by cust_id asc,order_date desc;
按照题目要求,首先对cust_id进行升序排列asc, 然后对时间进行降序排列desc。两个排序有先后要求,使用逗号分隔。
相关推荐