Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como verificar se a coluna não existe usando PHP, PDO, MySQL?


Não sei se te ajuda, mas você pode tentar isso:
if (count($dbh->query("SHOW COLUMNS FROM `items` LIKE 'item_type'")->fetchAll())) {
    $sth = $dbh->query ("SELECT item_type FROM items WHERE user_id = '$user_id'");
    $row = $sth->fetch();
    $item_type = $row['item_type'];
} else {
    $item_type = null;
}

Ele verifica se a coluna existe e executa a tarefa.