MySQL查询仅替换表中的NULL值?
为此,可以将ISNULL属性用于MySQL中的空值。让我们首先创建一个表-
mysql> create table DemoTable ( Name varchar(100) );
使用插入命令在表中插入一些记录-
mysql> insert into DemoTable values('Robert'); mysql> insert into DemoTable values(null); mysql> insert into DemoTable values('David'); mysql> insert into DemoTable values(null); mysql> insert into DemoTable values('Robert');
使用select语句显示表中的所有记录-
mysql> select *from DemoTable;
这将产生以下输出-
+--------+ | Name | +--------+ | Robert | | NULL | | David | | NULL | | Robert | +--------+ 5 rows in set (0.00 sec)
以下是查询以替换表中的空值-
mysql> update DemoTable set Name=IF(Name IS NULL,'Please Enter a Name',Name); Rows matched: 5 Changed: 2 Warnings: 0
让我们再次检查表记录-
mysql> select *from DemoTable;
这将产生以下输出-
+---------------------+ | Name | +---------------------+ | Robert | | Please Enter a Name | | David | | Please Enter a Name | | Robert | +---------------------+ 5 rows in set (0.00 sec)