mysql判断某一张表是否存在的3种方法
mysql判断某一张表是否存在的3种方法.1、information_schema 。2、create table if not exists
方法一(推荐):
如果表不存在就建立这个表,那么可以直接用 create table if not exists tablename 这样的指令来建立,不需要先去查询表是否存在。
方法二:
通过information_schema查询数据库是否存在某张表
select t.table_name from information_schema.TABLES t where t.TABLE_SCHEMA ='".$database."' and t.TABLE_NAME ='".$table."';
$database:查询的数据库
$table :查询表格
返回:若存在则返回表名,不存在返回为空
方法三:
sql SHOW TABLES LIKE '%表名%';
版权声明
本站部分原创文章,部分文章整理自网络。如有转载的文章侵犯了您的版权,请联系站长删除处理。如果您有优质文章,欢迎发稿给我们!联系站长:
愿本站的内容能为您的学习、工作带来绵薄之力。
评论