在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)
热门推荐
5 短祝福语简短暖心
10 结婚祝福语粤语大全简短
11 晚上祝福语女生文案简短
12 法语妈妈生日祝福语简短
13 药厂开工祝福语大全简短
14 蛋糕节日祝福语简短英文
15 跨年的生日祝福语简短
16 文案祝福语英文短句简短
17 在家聚餐婚礼祝福语简短
18 学生节祝福语大全简短