Tengo una tabla usuario, con una serie de campos.
Me gustaria modificar el comentario de esos campos, según he vto debería ser algo así:
Código HTML:
ALTER TABLE t1 MODIFY col1 BIGINT UNSIGNED DEFAULT 1 COMMENT 'my column';
Código PHP:
$query=mysql_query("ALTER TABLE usuario MODIFY ".$_POST['_campo']." COMMENT '".$_POST['entrada_campo']."'") or die(mysql_error());
Código HTML:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'COMMENT 'cosacaca'' at line 1
Alguna idea?