INSERIR AUTO INCREMENT VIA CODIGO MYSQL

JLSMA 10/08/2010 09:56:51
#349871
CRIEI A SEGUINTE TABELA NO BD

Sql = [Ô]create table restricoes ( [Ô]
Sql = Sql & [Ô]Cod integer unsigned not null [Ô]
Sql = Sql & [Ô]Usuario varchar(45) null, [Ô]
Sql = Sql & [Ô]Menu varchar(45) null, [Ô]
Sql = Sql & [Ô]Incluir varchar(3) null, [Ô]
Sql = Sql & [Ô]Alterar varchar(3) null, [Ô]
Sql = Sql & [Ô]Excluir varchar(3) null, [Ô]
Sql = Sql & [Ô]Consultas varchar(3) null, [Ô]
Sql = Sql & [Ô]primary key (Cod));[Ô]
MyDB.Execute Sql

Gostaria de Alterar somente o campo codigo com o auto_increment,

Tentei da seguinte forma mas não funcionou

Sql = [Ô]alter table restricoes modify column ( [Ô]
Sql = Sql & [Ô]Cod integer unsigned not null auto_increment, [Ô]
MyDB.Execute Sql


ALGUEM PODE ME DAR UMA DICA, OBRIGADO
DOUTORX 10/08/2010 11:09:39
#349878
Resposta escolhida
Tenta ai:

ALTER TABLE restricoes
CHANGE COLUMN 'Cod' 'Cod' int(1) unsigned NOT NULL AUTO_INCREMENT;
Tópico encerrado , respostas não são mais permitidas