mysql判断数据库是否存在,表是否存在

INFORMATION_SCHEMA.从版本5以后开始有的。之前只能用show tables like 'mytable';

mysql> select table_name from INFORMATION_SCHEMA.TABLES where table_name ='t
5' and TABLE_SCHEMA='test';
+————+
| table_name |
+————+
| t5 |
+————+
1 row in set (0.06 sec)

你可能感兴趣的:(mysql判断数据库是否存在,表是否存在)