INSERIR AUTO INCREMENT VIA CODIGO MYSQL
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
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
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