How to add a foreign key in phpMyAdmin
Adding a foreign key in phpMyAdmin is pretty simple, but the option might be difficult to find.
Open the table in which you want to add the foreign key. Go to the tab Structure, in which you will find a sub menu called Relation View. There, select to column which will hold the foreign key, and the table and column referenced by this key.
As the menus might be pretty difficult to find, refer to below screenshots.
It is also possible to add a foreign key with following SQL code :
ALTER TABLE `table1` ADD FOREIGN KEY (`FK_table2`) REFERENCES `table2`(`ID`) ON DELETE RESTRICT ON UPDATE RESTRICT;
Creating a foreign key allow for several options, including making sure that a column only contains entries existing in another table, possibility to prevent deletion of entries in the other table, or to cascade the deletion to referenced tables.
But one of the most useful options, in the phpMyAdmin interface, is to get a dropdown list with entries of the other table, when inserting entries in a table containing foreign keys.
It is even possible to decide which value is displayed by default from a table, when this is one is referenced by a foreign key in another table, as per below example.