根据特定字段值对 MySQL 中的进行排序
若要在 MySQL 中按特定字段值首先进行排序,请使用 ORDER BY FIELD()。我们首先创建一个数据表 −
mysql> create table DemoTable849(Color varchar(100)); Query OK, 0 rows affected (0.56 sec)
使用 insert 命令向表中插入一些记录 −
mysql> insert into DemoTable849 values('RED'); Query OK, 1 row affected (0.33 sec) mysql> insert into DemoTable849 values('ORANGE'); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable849 values('BLUE'); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable849 values('GREEN'); Query OK, 1 row affected (0.12 sec)
使用 select 语句从表中显示所有记录 −
mysql> select *from DemoTable849;
将会产生以下输出 −
+--------+ | Color | +--------+ | RED | | ORANGE | | BLUE | | GREEN | +--------+ 4 rows in set (0.00 sec)
以下是按特定值首先进行排序的查询 −
mysql> select *from DemoTable849 order by field(Color,'RED','GREEN','BLUE','ORANGE');
将会产生以下输出 −
+--------+ | Color | +--------+ | RED | | GREEN | | BLUE | | ORANGE | +--------+ 4 rows in set (0.00 sec)
广告