Ajouter une clé étrangère à une table MySQL
En adaptant et exécutant ce code SQL, vous pourrez insérer une clé étrangère :
ALTER TABLE `<nom_table>` ADD CONSTRAINT fk_nomtable_id FOREIGN KEY (`<nom_champ>`) REFERENCES `<nom_table_a_lier` (`<nom_champ_a_lier>` );