如何通过自定义规则进行排序,例如MySQL中的4,2,1,3之类的顺序?

要使用自定义规则进行排序,请使用ORDER BY FIELD()。让我们首先创建一个表-

mysql> create table DemoTable
   (
   Number int
   );

使用插入命令在表中插入一些记录-

mysql> insert into DemoTable values(1);
mysql> insert into DemoTable values(4);
mysql> insert into DemoTable values(2);
mysql> insert into DemoTable values(3);

使用select语句显示表中的所有记录-

mysql> select *from DemoTable;

输出结果

+--------+
| Number |
+--------+
| 1      |
| 4      |
| 2      |
| 3      |
+--------+
4 rows in set (0.00 sec)

以下是对ORDER BY自定义规则的查询,例如4,2,1,3-

mysql> select *from DemoTable order by field(Number,4,2,1,3);

这将以自定义顺序产生以下输出-

+--------+
| Number |
+--------+
| 4      |
| 2      |
| 1      |
| 3      |
+--------+
4 rows in set (0.00 sec)