CREATE TABLE utenti
(
id int( 6 ) NOT NULL AUTO_INCREMENT,
user char( 10 ) PRIMARY KEY,
pass char( 10 ) NOT NULL
);
Mi da questo errore:
#1075 - Incorrect table definition; there can be only one auto column and it must be defined as a key.
C'è un errore di sintassi?
Grazie