Mysql
 sql >> Base de données >  >> RDS >> Mysql

Tableau de création avec php

Cela me semble être une erreur SQL, essayez ceci :

"CREATE TABLE $user
(
   id mediumint(9) NOT NULL AUTO_INCREMENT,
   descrizione varchar(100) NULL DEFAULT NULL,
   data date NOT NULL,
   entrata varchar(10000) NOT NULL,
   uscita varchar(10000) NULL DEFAULT NULL,
   saldo varchar(100) NULL DEFAULT NULL,
   PRIMARY KEY (id)
)";