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

Como alterar a ação referencial da chave estrangeira? (comportamento)


Pergunta antiga, mas adicionando resposta para que se possa obter ajuda

Seu processo de duas etapas:

Suponha que uma table1 tem uma chave estrangeira com o nome da coluna fk_table2_id , com restrição nome fk_name e table2 é a tabela referida com a chave t2 (algo como abaixo no meu diagrama ).
   table1 [ fk_table2_id ] --> table2 [t2]

Primeiro passo , DROP old CONSTRAINT:(referência )
ALTER TABLE `table1` 
DROP FOREIGN KEY `fk_name`;  

restrição de aviso foi excluída, coluna não foi excluída

Segunda etapa , ADICIONE nova RESTRIÇÃO:
ALTER TABLE `table1`  
ADD CONSTRAINT `fk_name` 
    FOREIGN KEY (`fk_table2_id`) REFERENCES `table2` (`t2`) ON DELETE CASCADE;  

adicionando restrição, a coluna já existe

Exemplo:

Eu tenho um UserDetails tabela refere-se a Users tabela:
mysql> SHOW CREATE TABLE UserDetails;
:
:
 `User_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`Detail_id`),
  KEY `FK_User_id` (`User_id`),
  CONSTRAINT `FK_User_id` FOREIGN KEY (`User_id`) REFERENCES `Users` (`User_id`)
:
:

Primeiro passo:
mysql> ALTER TABLE `UserDetails` DROP FOREIGN KEY `FK_User_id`;
Query OK, 1 row affected (0.07 sec)  

Segunda etapa:
mysql> ALTER TABLE `UserDetails` ADD CONSTRAINT `FK_User_id` 
    -> FOREIGN KEY (`User_id`) REFERENCES `Users` (`User_id`) ON DELETE CASCADE;
Query OK, 1 row affected (0.02 sec)  

resultado:
mysql> SHOW CREATE TABLE UserDetails;
:
:
`User_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`Detail_id`),
  KEY `FK_User_id` (`User_id`),
  CONSTRAINT `FK_User_id` FOREIGN KEY (`User_id`) REFERENCES 
                                       `Users` (`User_id`) ON DELETE CASCADE
: