Home > Database > Mysql Tutorial > body text

How can we sort MySQL output in ascending order?

王林
Release: 2023-08-30 21:09:07
forward
1282 people have browsed it

我们如何对 MySQL 输出进行升序排序?

#If we want to sort the result set in ascending order, we need to specify the ASC (abbreviation for ASCENDING) keyword in the ORDER BY clause.

Syntax

Select column1, column2,…,columN From table_name ORDER BY column1[column2,…] ASC;
Copy after login

Example

In the following example, we sort the result set in ascending order by the "Name" column.

mysql> Select * from Student ORDER BY Name ASC;
+------+---------+---------+-----------+
| Id   | Name    | Address | Subject   |
+------+---------+---------+-----------+
| 2    | Aarav   | Mumbai  | History   |
| 1    | Gaurav  | Delhi   | Computers |
| 15   | Harshit | Delhi   | Commerce  |
| 17   | Raman   | Shimla  | Computers |
+------+---------+---------+-----------+
4 rows in set (0.00 sec)
Copy after login

The above is the detailed content of How can we sort MySQL output in ascending order?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!