Home > Database > Mysql Tutorial > body text

How are MySQL ENUM values ​​sorted?

WBOY
Release: 2023-08-25 10:33:03
forward
1237 people have browsed it

MySQL ENUM 值如何排序?

In MYSQL, we know that each ENUM value is associated with an index number. ENUM values ​​are also sorted based on their index number. Additionally, the index number depends on the order in which the enumeration members are listed in the column specification. For example, in the ENUM (‘GOOD’, ‘EXCELLENT’) column, ‘GOOD’ ranks before ‘EXCELLENT’. In other words, we can say that the index number of "GOOD" will be "1" and the index number of "EXCELLENT" will be "2".

MySQL can also store empty strings and convert null values ​​to ENUM. It sorts empty strings before non-empty strings, and NULL before empty strings. So the sort order is as follows -

## 1. NULL 2. Empty string 3 .Non-empty string

Sort order of ENUM values

强>

td>

Example

In this example we have a table "Results" ”, which contains the ENUM column “Grade”. The table contains the following values.

mysql> Select * from Result;
+-----+--------+-------+
| Id  | Name   | Grade |
+-----+--------+-------+
| 100 | Gaurav | GOOD  |
| 101 | Rahul  | POOR  |
| 102 | Rahul  | NULL  |
| 103 | Mohan  |       |
+-----+--------+-------+
4 rows in set (0.00 sec)
Copy after login

MySQL now returns sorted output after using the ORDER BY clause. We can observe that the output is sorted based on the index number.

mysql> Select * from result order by grade;
+-----+--------+-------+
| Id  | Name   | Grade |
+-----+--------+-------+
| 102 | Rahul  | NULL  |
| 103 | Mohan  |       |
| 101 | Rahul  | POOR  |
| 100 | Gaurav | GOOD  |
+-----+--------+-------+
4 rows in set (0.00 sec)
Copy after login

The above is the detailed content of How are MySQL ENUM values ​​sorted?. 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!