Maison> base de données> tutoriel mysql> le corps du texte

mysql怎么删除空的数据

WBOY
Libérer: 2022-02-24 12:04:10
original
10212 Les gens l'ont consulté

在mysql中,可以利用delete语句配合“NULL”删除空的数据,该语句用于删除表中的数据记录,“NULL”用于表示数据为空,语法为“delete from 表名 where 字段名=' ' OR 字段名 IS NULL;”。

mysql怎么删除空的数据

本教程操作环境:windows10系统、mysql8.0.22版本、Dell G3电脑。

mysql怎么删除空的数据

使用delete命令删除MySQL中的空白行。

语法如下

delete from yourTableName where yourColumnName=' ' OR yourColumnName IS NULL;
Copier après la connexion

上面的语法将删除空白行和NULL行。

为了理解这个概念,让我们创建一个表。创建表的查询如下

mysql> create table deleteRowDemo -> ( -> Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> StudentName varchar(20) -> );
Copier après la connexion

使用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');
Copier après la connexion

使用select语句显示表中的所有记录。

查询如下

mysql> select *from deleteRowDemo;
Copier après la connexion
Copier après la connexion

以下是输出

+----+-------------+ | Id | StudentName | +----+-------------+ | 1 | John | | 2 | | | 3 | | | 4 | NULL | | 5 | Carol | | 6 | Bob | | 7 | | | 8 | David | +----+-------------+ 8 rows in set (0.00 sec)
Copier après la connexion

这是删除空白行以及NULL的查询

mysql> delete from deleteRowDemo where StudentName='' OR StudentName IS NULL;
Copier après la connexion

现在,让我们再次检查表记录。

查询如下

mysql> select *from deleteRowDemo;
Copier après la connexion
Copier après la connexion

以下是输出

+----+-------------+ | Id | StudentName | +----+-------------+ | 1 | John | | 5 | Carol | | 6 | Bob | | 8 | David | +----+-------------+ 4 rows in set (0.00 sec)
Copier après la connexion

推荐学习:mysql视频教程

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!