A FOREIGN KEY in one table points to a PRIMARY KEY in another table.
Let's illustrate the foreign key with an example. Look at the following two tables:
The "Persons" table:
The "Purchases" table:
Note: "P_Id" column in the "Purchases" table points to the "P_Id" column in the "Persons" table.
The "P_Id" column in the "Persons" table is the PRIMARY KEY in the "Persons" table.
The "P_Id" column in the "Purchases" table is a FOREIGN KEY in the "Purchases" table.
The FOREIGN KEY constraint is used to prevent actions that would destroy links between tables.
The FOREIGN KEY constraint also prevents that invalid data form being inserted into the foreign key column, because it has to be one of the values contained in the table it points to.
The Below SQL creates a FOREIGN KEY on the "P_Id" column when the "Purchases" table is created:
MySQL:
SQL Server / Oracle / MS Access:
To allow naming of a FOREIGN KEY constraint, and for defining a FOREIGN KEY constraint on multiple columns, use the following SQL syntax:
MySQL / SQL Server / Oracle / MS Access:
To create a FOREIGN KEY constraint on the "P_Id" column when the "Purchases" table is already created, use the following SQL:
To drop a FOREIGN KEY constraint, use the following SQL:
Your Query was successfully sent!