mysql如何删除空的数据
在mysql中,可以利用delete语句配合“NULL”删除空的数据,该语句用于删除表中的数据记录,“NULL”用于表示数据为空,语法为“deletefrom表名where字段名=''OR字段名ISNULL;”。本教程操作环境:windows10系统、mysql8.0.22版本、DellG3电脑。mysql怎么删除空的数据使用delete命令删除MySQL中的空白行。语法如下deletefromyourTableNamewhereyourColumnName=''ORyou
在mysql中,可以利用delete语句配合“NULL”删除空的数据,该语句用于删除表中的数据记录,“NULL”用于表示数据为空,语法为“delete from 表名 where 字段名=' ' OR 字段名 IS NULL;”。
本教程操作环境:windows10系统、mysql8.0.22版本、Dell G3电脑。
mysql怎么删除空的数据
使用delete命令删除MySQL中的空白行。
语法如下
delete from yourTableName where yourColumnName=' ' OR yourColumnName IS NULL;
上面的语法将删除空白行和NULL行。
为了理解这个概念,让我们创建一个表。创建表的查询如下
mysql> create table deleteRowDemo -> ( -> Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> StudentName varchar(20) -> );
使用insert命令在表中插入一些记录。
查询如下
mysql> insert into deleteRowDemo(StudentName) values('John');
mysql> insert into deleteRowDemo(StudentName) values('');
mysql> insert into deleteRowDemo(StudentName) values('');
mysql> insert into deleteRowDemo(StudentName) values(NULL);
mysql> insert into deleteRowDemo(StudentName) values('Carol');
mysql> insert into deleteRowDemo(StudentName) values('Bob');
mysql> insert into deleteRowDemo(StudentName) values('');
mysql> insert into deleteRowDemo(StudentName) values('David');使用select语句显示表中的所有记录。
查询如下
mysql> select *from deleteRowDemo;
以下是输出
+----+-------------+ | Id | StudentName | +----+-------------+ | 1 | John | | 2 | | | 3 | | | 4 | NULL | | 5 | Carol | | 6 | Bob | | 7 | | | 8 | David | +----+-------------+ 8 rows in set (0.00 sec)
这是删除空白行以及NULL的查询
mysql> delete from deleteRowDemo where StudentName='' OR StudentName IS NULL;
现在,让我们再次检查表记录。
查询如下
mysql> select *from deleteRowDemo;
以下是输出
+----+-------------+ | Id | StudentName | +----+-------------+ | 1 | John | | 5 | Carol | | 6 | Bob | | 8 | David | +----+-------------+ 4 rows in set (0.00 sec)
Windows 10 是一款微软推出的经典操作系统,拥有硬件兼容性与多任务处理能力。它更偏向把系统状态查看和常用调节动作放在一起,适合需要持续观察和微调设备状态的场景。
极度公式是一款跨平台专业LaTeX公式识别编辑软件,支持OCR公式识别和多平台编辑。和使用说明,避免使用,享受完整功能与稳定支持。做扫描整理、文字提取和表格转换时,它能把识别后的处理步骤接得更顺,资料录入这类场景会省下不少时间。
















