Mysql
 sql >> Base de données >  >> RDS >> Mysql

MySQL - La clé étrangère lors de la suppression est définie comme nulle dans un champ non nul

Si vous définissez ON DELETE SET NULL à votre clé étrangère, il ne vous permettra pas de définir le champ comme NOT NULL .

Ainsi, vous ne pourrez pas créer ou modifier la table avec la colonne comme NOT NULL et ON DELETE SET NULL sur CountryId

Lorsque j'exécute les instructions ci-dessous :

CREATE TABLE `country` (
  `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  `name` VARCHAR(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ;

CREATE TABLE `city` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `countryId` int(10) unsigned DEFAULT NOT NULL,
  PRIMARY KEY (`id`),
  KEY `FK_country` (`countryId`),
  CONSTRAINT `FK_country` FOREIGN KEY (`countryId`) REFERENCES `country` (`id`) ON DELETE SET NULL ON UPDATE SET NULL
);

Et j'ai eu l'erreur dans MySQL 5.5 est :

Schema Creation Failed: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NOT NULL,
  PRIMARY KEY (`id`),
  KEY `FK_country` (`countryId`),
  CONSTRAINT `' at line 4: