0
I have a problem to import a table in phpmyadmin.
Table:
CREATE TABLE ManterEmpresa (
IdEmpresa INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
CNPJ INTEGER UNSIGNED NOT NULL,
NomeEmpresa VARCHAR(45) NOT NULL,
Logo VARCHAR(45) NOT NULL,
Descricao VARCHAR(45) NOT NULL,
Endereco VARCHAR(45) NOT NULL,
Telefone VARCHAR(45) NOT NULL,
)
ENGINE = INNODB;
Error:
#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 ')ENGINE = INNODB' at line 9
How can I solve this problem of mine ?
In
Telefone VARCHAR(45) NOT NULL,
remove the comma.– user28595