web-dev-qa-db-fra.com

MySQL - Ajouter une incrément automatique à la clé primaire

J'ai un problème étrange avec MySQL.

J'essaie de modifier la colonne d'une table qui est une clé primaire et possède une contrainte auto_incrimentation définie dessus. C'est également une référence de clé étrangère pour plusieurs autres tables. Je dois changer la longueur de cette colonne dans les deux, parent et tous les enfants.

set foreign_key_checks=0;
alter table Parent  modify Identifier smallint(10) unsigned;
alter table Child_1 modify FK_Identifier smallint(10) unsigned;
alter table Child_2 modify FK_Identifier smallint(10) unsigned;
alter table Child_3 modify FK_Identifier  smallint(10) unsigned;
alter table Child_4 modify FK_Identifier smallint(10) unsigned;
alter table Child_5 modify FK_Identifier smallint(10) unsigned;
set foreign_key_checks=1;

Cela supprime l'incrément automatique de la table des parents. Quelle serait la meilleure façon d'ajouter la contrainte?

Le ci-dessous semble échouer.

mysql> ALTER TABLE Parent MODIFY Identifier smallint(10) PRIMARY KEY AUTO_INCREMENT;
ERROR 1068 (42000): Multiple primary key defined


ALTER TABLE Parent MODIFY Identifier smallint(10) AUTO_INCREMENT;
------------------------
LATEST FOREIGN KEY ERROR
------------------------
110125 15:49:08 Error in foreign key constraint of table db/Child_1:
there is no index in referenced table which would contain
the columns as the first columns, or the data types in the
referenced table do not match to the ones in table. Constraint:
,
  CONSTRAINT Child_1_ibfk_1 FOREIGN KEY (FK_Identifier) REFERENCES RoomProfile (Identifier) ON DELETE CASCADE ON UPDATE CASCADE
The index in the foreign key in table is PRIMARY

Y a-t-il un meilleur moyen d'y parvenir?

EDIT: Afficher la création est (après modification):

  CREATE TABLE `Parent` (
  `Identifier` smallint(10) unsigned NOT NULL default '0',
  `Name` varchar(20) default NULL,
  `Description` varchar(100) default NULL,
   PRIMARY KEY  (`Identifier`),
   UNIQUE KEY `Name` (`Name`),
  ) ENGINE=InnoDB DEFAULT CHARSET=latin1 | 

avant de changer

`Identifier` smallint(5) unsigned NOT NULL AUTO_INCREMENT,

Merci!

17
Ricko M

Vous n'avez pas besoin de spécifier PRIMARY KEY Dans la déclaration Modify:

ALTER TABLE Parent MODIFY Identifier smallint(10) AUTO_INCREMENT;
37
Arnaud Le Blanc