如何在 (x=col3 如果 col3!=null,否则 x=col2) 的情况下实现 MySQL ORDER BY x?
为此,你可以使用 ORDER BY IFNULL()。让我们首先创建一个表 −
mysql> create table DemoTable -> ( -> Name varchar(20), -> CountryName varchar(20) -> ); Query OK, 0 rows affected (0.61 sec)
使用 insert 命令在表中插入一些记录 −
mysql> insert into DemoTable values('Chris',NULL); Query OK, 1 row affected (0.19 sec) mysql> insert into DemoTable values('David','AUS'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values(NULL,'UK'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values(NULL,'AUS'); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable values(NULL,NULL); Query OK, 1 row affected (0.11 sec)
使用 select 语句显示表中的所有记录 −
mysql> select *from DemoTable;
这将生成以下输出 −
+-------+-------------+ | Name | CountryName | +-------+-------------+ | Chris | NULL | | David | AUS | | NULL | UK | | NULL | AUS | | NULL | NULL | +-------+-------------+ 5 rows in set (0.00 sec)
以下是实现 MySQL ORDER BY x where (x=col3 如果 col3!=null,否则 x=col2) 的查询 −
mysql> select *from DemoTable -> order by ifnull(Name,CountryName);
这将生成以下输出 −
+-------+-------------+ | Name | CountryName | +-------+-------------+ | NULL | NULL | | NULL | AUS | | Chris | NULL | | David | AUS | | NULL | UK | +-------+-------------+ 5 rows in set (0.00 sec)
广告