Caio raga, sembra strano, ma ho problemi nella creazione di una tabella in formato enum... sto impazzendo...
Allora... Query da phpmyadmin
codice:
CREATE TABLE `sondaggi` (
`Id` INT( 20 ) NOT NULL AUTO_INCREMENT ,
`uno` ENUM,
`due` ENUM,
`tre` ENUM,
`quattro` ENUM,
`cinque` ENUM,
PRIMARY KEY ( `Id` )
) CHARACTER SET = latin1
Invece l'errore è questo:
#1064 - 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 ' `due` ENUM, `tre` ENUM, `quattro` ENUM, `cinque` ENUM, PRIMARY
Ho cercato nel manuale mysql, dappertutto ma senza trovare soluzione... mi aiutate? Grazie...

PS: I nomi dei campi o delle tabelle posso essere numerici?