prova
$result = mysql_query("SHOW COLUMNS FROM `table` LIKE 'fieldname'");
$exists = (mysql_num_rows($result))?TRUE:FALSE;
if($exists) {
// do your stuff
}
Per ulteriori informazioni:- MySQL, controlla se esiste una colonna in una tabella con SQL
Nota:- mysql_* è deprecato usa mysqli
o PDO