Estou tentando criar a tabela cliente com o seguinte código e está dando o erro abaixo:
mysql> create table cliente (
-> idcliente int unsigned not null auto_increment,
-> nome varchar not null,
-> cpf int unsigned not null,
-> logradouro varchar not null,
-> numero varchar not null,
-> complemento varchar null,
-> bairro varchar not null,
-> cidade varchar not null,
-> estado varchar not null,
-> fone_residencia int unsigned null,
-> fone_trabalho int unsigned null,
-> fone_celular int unsigned null,
-> primary key(idcliente);
ERROR 1064 (42000): 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 'not null,
cpf int unsigned not null,
logradouro varchar not null,
numero varchar' at line 3
mysql>
Pergunta
Marcos_Vinicius
Estou tentando criar a tabela cliente com o seguinte código e está dando o erro abaixo:
Link para o comentário
Compartilhar em outros sites
2 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.