In this post explains how to use Foreign Keys in SQL Server with syntax and examples.
A foreign key is a way to enforce referential integrity within your SQL Server database. A foreign key means that values in one table must also appear in another table.
The referenced table is called the parent table while the table with the foreign key is called the child table. The foreign key in the child table will generally reference a primary key in the parent table.
A foreign key can be created using either a CREATE TABLE statement or an ALTER TABLE statement.
The syntax for creating a foreign key using a CREATE TABLE statement in SQL Server (Transact-SQL) is:
The name of the child table that you wish to create.
The columns that you wish to create in the table. Each column must have a datatype. The column should either be defined as NULL or NOT NULL and if this value is left blank, the database assumes NULL as the default.
The name of the foreign key constraint that you wish to create.
The columns in child_table that will reference a primary key in the parent_table.
The name of the parent table whose primary key will be used in the child_table.
The columns that make up the primary key in the parent_table. The foreign key will enforce a link between this data and the child_col1, child_col2, ... child_col_n columns in the child_table.
Optional. It specifies what to do with the child data when the parent data is deleted. You have the options of NO ACTION, CASCADE, SET NULL, or SET DEFAULT.
Optional. It specifies what to do with the child data when the parent data is updated. You have the options of NO ACTION, CASCADE, SET NULL, or SET DEFAULT.
It is used in conjunction with ON DELETE or ON UPDATE. It means that no action is performed with the child data when the parent data is deleted or updated.
It is used in conjunction with ON DELETE or ON UPDATE. It means that the child data is either deleted or updated when the parent data is deleted or updated.
It is used in conjunction with ON DELETE or ON UPDATE. It means that the child data is set to NULL when the parent data is deleted or updated.
It is used in conjunction with ON DELETE or ON UPDATE. It means that the child data is set to their default values when the parent data is deleted or updated.
Let's look at an example of how to create a foreign key in SQL Server (Transact-SQL) using the CREATE TABLE statement.
For example:
In this foreign key example, we've created our parent table as the products table. The products table has a primary key that consists of the product_id field.
Next, we've created a second table called inventory that will be the child table in this foreign key example. We have used the CREATE TABLE statement to create a foreign key on the inventory table called fk_inv_product_id. The foreign key establishes a relationship between the product_id column in the inventory table and the product_id column in the products table.
This first example shows how to create a foreign key involving one column. Let's look at how to create a foreign key with one than one field.
For example:
In this foreign key example, our parent table called products has a primary key that consists of both the product_name and location columns. Therefore, our child table and foreign key must also reference these two columns.
So in this example, our foreign key called fk_inv_product references the products table based on two fields - the product_name and location fields.
The syntax for creating a foreign key using an ALTER TABLE statement in SQL Server (Transact-SQL) is:
The name of the child table that you wish to modify.
The name of the foreign key constraint that you wish to create.
The columns in child_table that will reference a primary key in the parent_table.
The name of the parent table whose primary key will be used in the child_table.
The columns that make up the primary key in the parent_table. The foreign key will enforce a link between this data and the child_col1, child_col2, ... child_col_n columns in the child_table.
Let's look at an example of how to create a foreign key in SQL Server (Transact-SQL) using the ALTER TABLE statement.
For example:
In this foreign key example, we've created a foreign key on the inventory table called fk_inv_product_id that references the products table based on the product_id field.
We could also create a foreign key with more than one field as in the example below:
In this SQL Server example, we have created a foreign key on the inventory table called fk_inv_product that references the products table based on the product_name and location columns.