在 MySQL 中更新空白单元格为 NULL,会将 MySQL 中的所有单元格都变为 NULL 吗?
仅更新空白单元格为 NULL,在 MySQL 中使用 NULLIF()。我们首先创建一个表 -
mysql> create table DemoTable ( Name varchar(50) ); Query OK, 0 rows affected (1.73 sec)
使用插入命令在表中插入一些记录 -
mysql> insert into DemoTable values('Mike'); Query OK, 1 row affected (0.07 sec) mysql> insert into DemoTable values(''); Query OK, 1 row affected (0.09 sec) mysql> insert into DemoTable values('David'); Query OK, 1 row affected (0.07 sec) mysql> insert into DemoTable values(''); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable values('Mike'); Query OK, 1 row affected (0.15 sec)
使用 select 语句显示表中的所有记录 -
mysql> select *from DemoTable;
这将生成以下输出 -
+-------+ | Name | +-------+ | Mike | | | | David | | | | Mike | +-------+ 5 rows in set (0.00 sec)
以下是仅将空白单元格更新为 NULL 的查询 -
mysql> update DemoTable set Name=NULLIF(Name,''); Query OK, 2 rows affected (0.19 sec) Rows matched: 5 Changed: 2 Warnings: 0
让我们再次检查表记录 -
mysql> select *from DemoTable;
这将生成以下输出 -
+-------+ | Name | +-------+ | Mike | | NULL | | David | | NULL | | Mike | +-------+ 5 rows in set (0.00 sec)
广告