Mysql
 sql >> Database >  >> RDS >> Mysql

MySQL controlla se la tabella esiste già

Non c'è bisogno di interrogazione. esegui questo

$this->db->table_exists('customer');

Dati tabella

Esempio

$query = $this->db->table_exists('customer');
$count = count($query);

if (empty($count)) {
    echo "No Table Found";
}
elseif ($count == 1) {
    echo "Oopzz! There is table";
}
elseif ($count >1) {
    echo "Ohh !! There are many tables";
}