在MySQL中使用CASE WHEN获取表是否存在的布尔结果

为此,您可以使用INFORMATION_SCHEMA.TABLES并找到要搜索的表。让我们首先创建一个表-

mysql> create table DemoTable
   -> (
   -> Id int,
   -> Name varchar(20)
   -> );

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

mysql> insert into DemoTable values(101,'Chris');
mysql> insert into DemoTable values(102,'David');

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

mysql> select *from DemoTable;

这将产生以下输出-

+------+-------+
|   Id | Name  |
+------+-------+
|  101 | Chris |
|  102 | David |
+------+-------+
2 rows in set (0.00 sec)

这是检查表是否存在的查询-

mysql> select max(case when table_name = 'DemoTable' then 'Yes the table
exist(TRUE)' else 'No(FALSE)' end) AS isTableExists
   -> from information_schema.tables;

这将产生以下输出-

+-------------------------------+
| isTableExists                 |
+-------------------------------+
| Yes the table exist(TRUE)     |
+-------------------------------+
1 row in set (0.52 sec)