Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Periksa apakah tabel MySQL ada atau tidak

Versi mysqli yang diperbarui:

if ($result = $mysqli->query("SHOW TABLES LIKE '".$table."'")) {
    if($result->num_rows == 1) {
        echo "Table exists";
    }
}
else {
    echo "Table does not exist";
}

Versi mysql asli:

if(mysql_num_rows(mysql_query("SHOW TABLES LIKE '".$table."'"))==1) 
    echo "Table exists";
else echo "Table does not exist";

Direferensikan dari dokumen PHP .



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Node.js terhubung melalui ssh

  2. disederhanakan:mysqli num_rows tidak berfungsi

  3. MySql - fase pengiriman data yang lambat

  4. Reproduksi kesalahan MySQL:Server menutup koneksi (node.js)

  5. Kecepatan kueri berdasarkan urutan kolom