Vecchia domanda ma aggiunta di risposte in modo che si possa ottenere aiuto
Il suo processo in due fasi:
Supponiamo, una table1
ha una chiave straniera con il nome della colonna fk_table2_id
, con vincolo nome fk_name
e table2
è riferita alla tabella con il tasto t2
(qualcosa come sotto nel mio diagramma ).
table1 [ fk_table2_id ] --> table2 [t2]
Primo passo , DROP vecchio CONSTRAINT:(riferimento )
ALTER TABLE `table1`
DROP FOREIGN KEY `fk_name`;
il vincolo di avviso è stato eliminato, la colonna non è stata eliminata
Secondo passaggio , AGGIUNGI un nuovo VINCOLO:
ALTER TABLE `table1`
ADD CONSTRAINT `fk_name`
FOREIGN KEY (`fk_table2_id`) REFERENCES `table2` (`t2`) ON DELETE CASCADE;
aggiungendo vincolo, la colonna è già presente
Esempio:
Ho un UserDetails
la tabella si riferisce a Users
tabella:
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`)
:
:
Primo passo:
mysql> ALTER TABLE `UserDetails` DROP FOREIGN KEY `FK_User_id`;
Query OK, 1 row affected (0.07 sec)
Secondo passaggio:
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)
risultato:
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
: