Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

italo

problema no create table

Recommended Posts

create table if not exists cliente (	  codigoCliente int(5) auto_increment unsigned zerofill not null,	  nomeCliente varChar(60) not null,	  cpfCliente varChar(11) not null,	  sexoCliente varChar(1),	  dataNascimentoCliente varChar(11),	  dataCadastroCliente varChar(11) not null,	  enderecoCliente varChar(60),	  complementoCliente varChar(30),	  bairroCliente varChar(30),	  cidadeCliente varChar(30),	  estadoCliente varChar(2),	  cepCliente varChar(8),	  telefone1Cliente varChar(10),	  telefone2Cliente varChar(10),	  emailCliente varChar(50),	  primary key (codigoCliente))
ele diz que há um erro de sintaxe próximo ao unsigned zerofill not null ........

alguém saberia me dizer o que poderia ser isto!?

 

MySQL Version 4.1.11

 

obrigado!

 

create table if not exists cliente (	  codigoCliente int(5) auto_increment unsigned zerofill not null,	  nomeCliente varChar(60) not null,	  cpfCliente varChar(11) not null,	  sexoCliente varChar(1),	  dataNascimentoCliente varChar(11),	  dataCadastroCliente varChar(11) not null,	  enderecoCliente varChar(60),	  complementoCliente varChar(30),	  bairroCliente varChar(30),	  cidadeCliente varChar(30),	  estadoCliente varChar(2),	  cepCliente varChar(8),	  telefone1Cliente varChar(10),	  telefone2Cliente varChar(10),	  emailCliente varChar(50),	  primary key (codigoCliente))
ele diz que há um erro de sintaxe próximo ao unsigned zerofill not null ........

alguém saberia me dizer o que poderia ser isto!?

 

MySQL Version 4.1.11

 

obrigado!

 

 

consegui resolver ... a bronca é somente para por a propriedade auto_increment após o unsigned zerofill

 

 

beleza!?

Compartilhar este post


Link para o post
Compartilhar em outros sites

Olá Italo...

 

Sei que isto não vai mudar a sua vida mas... você não acha redundante usar auto_increment agregados a zerofill e not null? :)

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.