10

我正在尝试检查表是否存在,如果存在,则执行一些操作。我不断收到一个错误,告诉我该表不存在,而不是完成我的检查。这是代码:

$tableExists = $db->prepare("SHOW TABLES LIKE $table_array");
$tableExists->execute();
if($tableExists->rowCount() > 0) {
   // do some code
 } else {
   echo "Unable to add because table does not exists";
}

更新:根据以下建议,我现在执行以下操作:

$tableExists = $db->prepare("SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = ?"); 
$tableExists->execute(array($table_array)); 
if(!is_null($tableExist)) { 
    //do something
} else {
    echo "table does not exist;
}

但是,if 语句似乎无法确定表是否存在。我还能做什么?

4

4 回答 4

11

尝试使用information_schema询问表是否存在。就像是

SELECT 
  * 
FROM
  information_schema 
WHERE TABLE_NAME = "$table_array" 

浏览所有内容information_schema,您会对它存储的有关您的数据库的信息感到惊喜:)

于 2013-08-05T22:17:33.890 回答
2
if(mysql_num_rows(mysql_query("SHOW TABLES LIKE '".$table."'"))==1) 
    echo "Table exists";
else echo "Table does not exist";

ref:检查 MySQL 表是否存在

于 2013-08-05T22:15:41.793 回答
2

试试这个:

select case when (select count(*) from INFORMATION_SCHEMA.TABLES where TABLE_NAME='offices') = 1 then 'exists' else 'does not exist' end
于 2013-08-05T22:24:16.987 回答
-1

试试这个:

select * from table_schema //this is your database name    
where table_name // your table name    
= '$table_array'

希望这对你有用。

于 2016-03-22T13:27:31.243 回答