题解 | #检索顾客名称并且排序#
检索顾客名称并且排序
https://www.nowcoder.com/practice/6cfabb1b49554c4c8d8f9977bf6a3a5d
select cust_name from Customers order by cust_name desc
记住排序的关键字order by默认是升序,要想降序需要加上desc
检索顾客名称并且排序
https://www.nowcoder.com/practice/6cfabb1b49554c4c8d8f9977bf6a3a5d
select cust_name from Customers order by cust_name desc
记住排序的关键字order by默认是升序,要想降序需要加上desc
相关推荐