如何在 MySQL 中使用特定值更新某个字段,前提是该字段为 null?
要更新为 null 的字段,请使用 UPDATE 命令和 IS NULL 属性。我们首先创建一个表 -
mysql> create table DemoTable ( StudentScore int ); Query OK, 0 rows affected (0.47 sec)
使用 insert 命令向表中插入一些记录 -
mysql> insert into DemoTable values(89); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values(NULL); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values(45); Query OK, 1 row affected (0.09 sec) mysql> insert into DemoTable values(NULL); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable values(56); Query OK, 1 row affected (0.14 sec)
使用 select 语句显示表中的所有记录 -
mysql> select *from DemoTable;
这将产生以下输出 -
+--------------+ | StudentScore | +--------------+ | 89 | | NULL | | 45 | | NULL | | 56 | +--------------+ 5 rows in set (0.00 sec)
以下是 MySQL 中更新为 null 的字段的查询 -
mysql> update DemoTable set StudentScore=30 where StudentScore IS NULL; Query OK, 2 rows affected (0.34 sec) Rows matched: 2 Changed: 2 Warnings: 0
让我们再次检查一下表记录。
mysql> select *from DemoTable;
这将产生以下输出 -
+--------------+ | StudentScore | +--------------+ | 89 | | 30 | | 45 | | 30 | | 56 | +--------------+ 5 rows in set (0.00 sec)
广告