SQL ORDER BY 关键字
SQL ORDER BY
The ORDER BY
关键字用于对结果集进行升序或降序排序。
语法
SELECT column1, column2, ...
FROM table_name
ORDER BY column1, column2, ... ASC|DESC;
演示数据库
以下是示例中使用的 Products 表的一部分
ProductID | ProductName | SupplierID | CategoryID | Unit | Price |
---|---|---|---|---|---|
1 | Chais | 1 | 1 | 10 boxes x 20 bags | 18 |
2 | Chang | 1 | 1 | 24 - 12 oz bottles | 19 |
3 | Aniseed Syrup | 1 | 2 | 12 - 550 ml bottles | 10 |
4 | Chef Anton's Cajun Seasoning | 2 | 2 | 48 - 6 oz jars | 22 |
5 | Chef Anton's Gumbo Mix | 2 | 2 | 36 boxes | 21.35 |
DESC
The ORDER BY
关键字默认按升序对记录进行排序。要按降序对记录进行排序,请使用 DESC
关键字。
按字母顺序排序
对于字符串值,ORDER BY
关键字将按字母顺序排序
按字母顺序降序排序
要按反向字母顺序对表进行排序,请使用 DESC
关键字
ORDER BY 多列
以下 SQL 语句选择 "Customers" 表中的所有客户,按 "Country" 和 "CustomerName" 列排序。这意味着它按 Country 排序,但如果某些行具有相同的 Country,则按 CustomerName 排序它们。
使用 ASC 和 DESC
以下 SQL 语句选择 "Customers" 表中的所有客户,按 "Country" 升序排序,按 "CustomerName" 降序排序