这个ORDER BY
关键字用于按升序或降序对结果集进行排序。
SELECT column1, column2, ...
FROM table_name
ORDER BY column1, column2, ... ASC|DESC;
以下是选自产品示例中使用的表:
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 |
这个ORDER BY
默认情况下,关键字按升序对记录进行排序。要按降序对记录进行排序,请使用 DESC
关键字。
对于字符串值ORDER BY
关键字将按字母顺序排列:
要按字母顺序对表进行反向排序,请使用DESC
关键字:
以下 SQL 语句从 "Customers" 表中选择所有客户,并按 "Country" 和 "CustomerName" 列排序。这意味着它按国家/地区排序,但如果某些行具有相同的国家/地区,则会按客户名称排序:
以下 SQL 语句从 "Customers" 表中选择所有客户,按 "Country" 升序排序,并按 "CustomerName" 列降序排序:
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!