即使某个字段设置为null,也可以 在 MySQL 中选择不同的字段吗?
为此,可以使用 COALESCE()。让我们首先创建一个表 -
mysql> create table DemoTable1336 -> ( -> FirstName varchar(20) -> , -> SecondName varchar(20) -> ); Query OK, 0 rows affected (0.64 sec)
使用 insert 命令向表中插入一些记录 -
mysql> insert into DemoTable1336 values('John',NULL); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable1336 values(NULL,'Chris'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable1336 values('David','Mike'); Query OK, 1 row affected (0.18 sec)
使用 select 语句显示表中的所有记录 -
mysql> select * from DemoTable1336;
这将产生以下输出 -
+-----------+------------+ | FirstName | SecondName | +-----------+------------+ | John | NULL | | NULL | Chris | | David | Mike | +-----------+------------+ 3 rows in set (0.00 sec)
以下是在 MySQL 中选择不同字段的查询,即使某个字段设置为 null -
mysql> select coalesce(FirstName,SecondName) as AlternateName from DemoTable1336;
这将产生以下输出 -
+---------------+ | AlternateName | +---------------+ | John | | Chris | | David | +---------------+ 3 rows in set (0.00 sec)
广告