MySQL:如何查找具有特殊字符的 value 并用 NULL 替换?
为此,请使用 SET yourColumnName = NULL,语法如下 −
update yourTableName set yourColumnName=NULL where yourColumnName=yourValue;
首先让我们创建一个表 −
mysql> create table DemoTable1914 ( Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, Code varchar(20) )AUTO_INCREMENT=1001; Query OK, 0 rows affected (0.00 sec)
使用 insert 命令向表中插入一些记录 −
mysql> insert into DemoTable1914(Code) values('John101'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1914(Code) values('234David'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1914(Code) values('100_Mike'); Query OK, 1 row affected (0.00 sec)
使用 select 语句显示表中的所有记录 −
mysql> select * from DemoTable1914;
结果将显示如下 −
+------+----------+ | Id | Code | +------+----------+ | 1001 | John101 | | 1002 | 234David | | 1003 | 100_Mike | +------+----------+ 3 rows in set (0.00 sec)
以下是找到 value 并用 NULL 替换的查询 −
mysql> update DemoTable1914 set Code=NULL where Code='100_Mike'; Query OK, 1 row affected (0.00 sec) Rows matched: 1 Changed: 1 Warnings: 0
让我们再次检查表中的记录 −
mysql> select * from DemoTable1914;
结果将显示如下 −
+------+----------+ | Id | Code | +------+----------+ | 1001 | John101 | | 1002 | 234David | | 1003 | NULL | +------+----------+ 3 rows in set (0.00 sec)
广告