vecchia questione, ma l'aggiunta di risposta in modo che si può ottenere aiuto
Il suo processo in due fasi:
Supponiamo, un table1
ha una chiave esterna con nome colonna fk_table2_id
, con vincolo nome fk_name
e table2
è riferito tabella con chiave t2
(qualcosa di simile nel mio schema).
table1 [ fk_table2_id ] --> table2 [t2]
Primo passo, Goccia vecchio vincolo: (reference)
ALTER TABLE `table1`
DROP FOREIGN KEY `fk_name`;
preavviso vincolo viene eliminato, colonna non viene eliminato
Secondo passo, aggiungere nuovi CONSTRAINT:
ALTER TABLE `table1`
ADD CONSTRAINT `fk_name`
FOREIGN KEY (`fk_table2_id`) REFERENCES `table2` (`t2`) ON DELETE CASCADE;
aggiungendo vincolo, colonna c'è già
Esempio:
Ho una tabella UserDetails
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 passo:
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
:
Grazie, vecchia domanda ma hai ragione, l'altra risposta è stata un po 'criptica per me nel corso della giornata. – Moak
grazie anche a te :) –
Non dovrebbe il vincolo che aggiungi essere ON DELETE RESTRICT come richiesto dalla domanda originale? – Noumenon