Je veux ajouter une clé étrangère à une table appelée "katalog".
ALTER TABLE katalog
ADD CONSTRAINT `fk_katalog_sprache`
FOREIGN KEY (`Sprache`)
REFERENCES `Sprache` (`ID`)
ON DELETE SET NULL
ON UPDATE SET NULL;
Lorsque j'essaie de le faire, je reçois ce message d'erreur:
Error Code: 1005. Can't create table 'mytable.#sql-7fb1_7d3a' (errno: 150)
Erreur dans l'état INNODB:
120405 14:02:57 Erreur dans la contrainte de clé étrangère de la table mytable. # Sql-7fb1_7d3a:
FOREIGN KEY (`Sprache`)
REFERENCES `Sprache` (`ID`)
ON DELETE SET NULL
ON UPDATE SET NULL:
Cannot resolve table name close to:
(`ID`)
ON DELETE SET NULL
ON UPDATE SET NULL
Lorsque j'utilise cette requête, cela fonctionne, mais avec une mauvaise action "on delete":
ALTER TABLE `katalog`
ADD FOREIGN KEY (`Sprache` ) REFERENCES `sprache` (`ID` )
Les deux tables sont InnoDB et les deux champs sont "INT (11) non null". J'utilise MySQL 5.1.61. Essayer de lancer cette requête ALTER avec MySQL Workbench (le plus récent) sur un MacBook Pro.
Tableau Créer des instructions:
CREATE TABLE `katalog` (
`ID` int(11) unsigned NOT NULL AUTO_INCREMENT,
`Name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`AnzahlSeiten` int(4) unsigned NOT NULL,
`Sprache` int(11) NOT NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `katalogname_uq` (`Name`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=DYNAMIC$$
CREATE TABLE `sprache` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`Bezeichnung` varchar(45) NOT NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `Bezeichnung_UNIQUE` (`Bezeichnung`),
KEY `ix_sprache_id` (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8
katalog
a int(11) unsigned
. sprache
n'a pas la usigned
partie, donc deux colonnes ne sont pas identiques.
auto_increment
colonnes, ce qui est mauvais. En outre, le manuel de MySQL dit: Corresponding columns in the foreign key and the referenced key must have similar internal data types inside InnoDB so that they can be compared without a type conversion. The size and sign of integer types must be the same. The length of string types need not be the same. For nonbinary (character) string columns, the character set and collation must be the same.
. Par conséquent, oui, un type de données similaire et le même signe.
SHOW CREATE TABLE
, je ne peux que demander - le nom de la colonne est-il vraiment ID, en majuscules?