Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

MySQL - Chave estrangeira ao excluir conjunto nulo no campo não nulo


Se você definir ON DELETE SET NULL para sua chave estrangeira, não permitirá que você defina o campo como NOT NULL .

Portanto, você não poderá criar ou alterar a tabela com coluna como NOT NULL e ON DELETE SET NULL em CountryId

Quando eu executo as instruções abaixo:
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
);

E recebi o erro no MySQL 5.5 é:
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: