italo 0 Denunciar post Postado Dezembro 29, 2005 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
Prog 183 Denunciar post Postado Dezembro 29, 2005 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