Ejemplo 1: comprobar si existe una tabla sql php
if ($result = $mysqli->query("SHOW TABLES LIKE '".$table."'")) {
if($result->num_rows == 1) {
echo "Table exists";
}
}
else {
echo "Table does not exist";
}
Ejemplo 2: MySQL crea una tabla si no existe
CREATE TABLE [IF NOT EXISTS] table_name(
column_1_definition,
column_2_definition,
...,
table_constraints
) ENGINE=storage_engine;
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)