MySQL ORDER BY 子句:排序
mysql order by 子句:排序
我們使用 select 語句從 mysql 表中讀取數(shù)據(jù)。如果需要對讀取的數(shù)據(jù)進行排序,可以使用 mysql 的 order by 子句來設置排序字段和排序方式。
1. mysql order by 子句的語法
select field1, field2,...fieldn from table_name1, table_name2... order by field1 [asc [desc][默認 asc]], [field2...] [asc [desc][默認 asc]]
- 你可以使用任何字段來作為排序的條件,從而返回排序后的查詢結果。
- 你可以設定多個字段來排序。
- 你可以使用 asc 或 desc 關鍵字來設置查詢結果是按升序或降序排列。 默認情況下,它是按升序排列。
- 你可以添加 where...like 子句來設置條件。
2. 通過命令窗口使用 order by 子句
以下將在 sql select 語句中使用 order by 子句來讀取mysql 數(shù)據(jù)表 article 中的數(shù)據(jù):
嘗試以下范例,結果將按升序及降序排列。
mysql 范例
mysql> use yapf;
database changed
mysql> select * from article order by submission_date asc;
+-----------+---------------+---------------+-----------------+
| id | title | author | submission_date |
+-----------+---------------+---------------+-----------------+
| 3 | 學習 java | yapf.com | 2015-05-01 |
| 4 | 學習 python | yapf.com | 2016-03-06 |
| 1 | 學習 php | 碩編程 | 2017-04-12 |
| 2 | 學習 mysql | 碩編程 | 2017-04-12 |
+-----------+---------------+---------------+-----------------+
4 rows in set (0.01 sec)
mysql> select * from article order by submission_date desc;
+-----------+---------------+---------------+-----------------+
| id | title | author | submission_date |
+-----------+---------------+---------------+-----------------+
| 1 | 學習 php | 碩編程 | 2017-04-12 |
| 2 | 學習 mysql | 碩編程 | 2017-04-12 |
| 4 | 學習 python | yapf.com | 2016-03-06 |
| 3 | 學習 java | yapf.com | 2015-05-01 |
+-----------+---------------+---------------+-----------------+
4 rows in set (0.01 sec)