php – 检查MySQL上是否存在表

前端之家收集整理的这篇文章主要介绍了php – 检查MySQL上是否存在表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试检查表是否存在,如果存在,则执行一些操作.我继续收到一个错误,告诉我该表不存在而不是完成我的检查.这是代码
$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语句似乎无法确定表是否存在.我还能做什么?

尝试使用information_schema询问表是否存在.就像是
SELECT 
  * 
FROM
  information_schema 
WHERE TABLE_NAME = "$table_array"

看看information_schema所拥有的所有内容,您将对其存储的有关数据库的信息感到惊喜:)

原文链接:https://www.f2er.com/php/134889.html

猜你在找的PHP相关文章