SQL ORDER BY 关键字有什么用?
ORDER BY 关键字用于对结果集进行排序。
SQL ORDER BY 关键字
ORDER BY 关键字用于对结果集按照一个列或者多个列进行排序。
ORDER BY 关键字默认按照升序对记录进行排序。如果需要按照降序对记录进行排序,您可以使用 DESC 关键字。
SQL ORDER BY 语法
1 2 3 | SELECT column_name,column_name
FROM table_name
ORDER BY column_name,column_name ASC|DESC;
|
Copier après la connexion
演示数据库
在本教程中,我们将使用 RUNOOB 样本数据库。
下面是选自 "Websites" 表的数据:
1 2 3 4 5 6 7 8 9 | +----+--------------+---------------------------+-------+---------+
| id | name | url | alexa | country |
+----+--------------+---------------------------+-------+---------+
| 1 | Google | https:
| 2 | 淘宝 | https:
| 3 | 菜鸟教程 | http:
| 4 | 微博 | http:
| 5 | Facebook | https:
+----+--------------+---------------------------+-------+---------+
|
Copier après la connexion
ORDER BY 实例
下面的 SQL 语句从 "Websites" 表中选取所有网站,并按照 "alexa" 列排序:
实例
1 2 | SELECT * FROM Websites
ORDER BY alexa;
|
Copier après la connexion
执行输出结果:
更多PHP相关知识,请访问PHP中文网!