学习

1、DESC是descend下降的缩写,降序,只要放在需要降序的字段前面就可以了,

2、对多个字段执行降序排列的话就是字段名+DESC以逗号隔开再字段名+DESC…..最后以分号结尾

3、select xxx(字段) from xxx(表) where (条件xxxx) ,排序、分组操作都是在where条件之后的,查询xxxx字段从xxx表 当xxxx字段符合xxxx条件 对xxxx字段进行排序/分组操作 !

练习与修正

1.编写SQL语句,从Customers中检索所有的顾客名称(cust_names),并按从Z到A的顺序显示结果。

2.编写SQL语句,从Orders表中检索顾客ID(cust_id)和订单号(order_num),并先按顾客ID对结果进行排序,再按订单日期倒序排列。

3.显然,我们的虚拟商店更喜欢出售比较贵的物品,而且这类物品有很多。编写SQL语句,显示OrderItems表中的数量和价格(item_price),并按数量由多到少、价格由高到低排序。

1.错!

SELECT cust_names DESC

FROM Customers ;

修改后

SELECT cust_names

FROM Customers

ORDER BY cust_names DESC ;

2.错

SELECT cust_id ,order_num

FROM ORDERS

ORDER BY cust_id , order_num DESC ;

修改后

SELECT cust_id ,order_num

FROM orders

ORDER BY cust_id DESC , order_num DESC ;

3.错

SELECT item_price , item_num

FROM OrderItems

ORDER BY item_num , item_price DESC;

修改后,数量是quantity

SELECT item_price , quantity

FROM OrderItems

ORDER BY quantity DESC , item_price DESC ;

4.正确!找错题(一个字段后不用加逗号,BY和分号不能忘记,)

SELECT vend_name

FROM Vendors

ORDER BY vend_name DESC;