Ir para conteúdo

POWERED BY:

Arquivado

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

diogomancha

Erro para criar tabela

Recommended Posts

Estou tentando criar a seguinte tabela,com o código :CREATE TABLE recrutamento ( `nick` int(5) NOT NULL auto_increment, `pq` int(5) NOT NULL auto_increment, `guilda` int(5) NOT NULL auto_increment, `xp` int(5) NOT NULL auto_increment, `lvlatual` int(5) NOT NULL auto_increment, `classe` int(5) NOT NULL auto_increment, `descricao` text NOT NULL, `statsa` text NOT NULL, `statsf` text NOT NULL, `ekia` text NOT NULL, `ekif` text NOT NULL, `ver` char(3) default 'off', PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`)) ;ele reterna esse erro : #1075 - Incorrect table definition; There can only be one auto column and it must be defined as a key

Compartilhar este post


Link para o post
Compartilhar em outros sites

Tradução do erro:

Definição de tabela incorreta;  Pode somente haver uma auto coluna e deve ser definida como uma chave

CREATE TABLE recrutamento (`id`BIGINT(20) auto_increment,`nick` int(5) NOT NULL,`pq` int(5) NOT NULL,`guilda` int(5) NOT NULL,`xp` int(5) NOT NULL,`lvlatual` int(5) NOT NULL,`classe` int(5) NOT NULL,`descricao` text NOT NULL,`statsa` text NOT NULL,`statsf` text NOT NULL,`ekia` text NOT NULL,`ekif` text NOT NULL,`ver` char(3) default '0',PRIMARY KEY (`id`));

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.