如何检查MySQL数据库中已存在的空表?

要检查数据库中是否有空表,您需要从表中提取一些记录。如果表不为空,则将返回表记录。

让我们首先创建一个表-

mysql> create table DemoTable(Id int,Name varchar(100),Age int);

使用插入命令在表中插入一些记录-

mysql> insert into DemoTable values(1001,'John',23);

mysql> insert into DemoTable values(1002,'Chris',21);

mysql> insert into DemoTable values(1003,'David',22);

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

mysql> select *from DemoTable;

这将产生以下输出-

+------+-------+------+

| Id   | Name  | Age  |

+------+-------+------+

| 1001 | John  |   23 |

| 1002 | Chris |   21 |

| 1003 | David |   22 |

+------+-------+------+

3 rows in set (0.00 sec)

让我们从表中删除所有记录-

mysql> delete from DemoTable where Id IN(1001,1002,1003);

现在尝试根据where条件从表中获取记录-

mysql> select Id from DemoTable where Name="John";

Empty set (0.00 sec)

您可以在上面看到,由于表现在为空,因此将返回一个空集。

以上是 如何检查MySQL数据库中已存在的空表? 的全部内容, 来源链接: utcz.com/z/343296.html

回到顶部