nella creazione della tabella messaggistica si è creato questo problema:
Messaggio di MySQL:
#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 'TINYINT(1)NOT NULL
PRIMARY KEY(id),
)' at line 5
la tabella è la seguente:
CREATE TABLE messaggistica (
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
id_mitt VARCHAR(40) NOT NULL,
id_rice VARCHAR(40) NOT NULL,
TINYINT(1)NOT NULL
PRIMARY KEY(id),
);
grazie