MySQL ORDER BY CASE 在开始处显示特殊字符


我们首先创建一个表 -

mysql> create table DemoTable
(
   StudentId varchar(40)
);
Query OK, 0 rows affected (0.55 sec)

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

mysql> insert into DemoTable values('10');
Query OK, 1 row affected (0.15 sec)
mysql> insert into DemoTable values(20);
Query OK, 1 row affected (0.13 sec)
mysql> insert into DemoTable values('~');
Query OK, 1 row affected (0.13 sec)
mysql> insert into DemoTable values(NULL);
Query OK, 1 row affected (0.11 sec)
mysql> insert into DemoTable values('40');
Query OK, 1 row affected (0.17 sec)
mysql> insert into DemoTable values(NULL);
Query OK, 1 row affected (0.14 sec)

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

mysql> select *from DemoTable;

此操作将产生以下输出 -

+-----------+
| StudentId |
+-----------+
| 10        |
| 20        |
| ~         |
| NULL      |
| 40        |
| NULL      |
+-----------+
6 rows in set (0.00 sec)

以下是 MySQL 中特殊字符排序的查询 -

mysql> select *from DemoTable
   order by case when StudentId not like '%[^a-zA-Z0-9]%' THEN 80
   when StudentId is null then 98
   else 85 end,StudentId;

此操作将产生以下输出 -

+-----------+
| StudentId |
+-----------+
| ~         |
| 10        |
| 20        |
| 40        |
| NULL      |
| NULL      |
+-----------+
6 rows in set (0.03 sec)

更新时间:04-Oct-2019

516 次查看

开启你的职业

通过完成课程获得认证

开始
广告