SQL Foreign Key constraint is used to implement the relationship between tables. To normalize the data, we split the tables using this SQL Server Foreign key relation. While splitting the data, we need a reference, and we call it as a foreign key relationship. The list of points you should remember before going to the example of Foreign Key in SQL Server.
- You can link a Foreign key column with a Primary constraint in another column, or a Unique Constraint column in another column.
- Values you enter in the constraint column should match with the referenced column. Otherwise, it will throw an error.
- You can define the SQL Server foreign key relationship with tables that are present within the same database and same server. You can use Triggers to provide cross referential integrity.
- It allows you to define the foreign key relationship with another column present within the same table. This type of relationship is self-reference.
- You can’t delete a table that has this relationship
For example, the Employee table has Employee ID, and Orders table has Orders information along with Emp ID. Remember, this Emp ID holds a relationship with the Employee ID column in the Employee. For this SQL foreign key demonstration, we are using the Department.

Create SQL Foreign Key
We can create a SQL Server Foreign key using the Transact query, and the Management Studio.
Create using transact query
How to create a Foreign Key in SQL server using Transact statement?. Here, we will create this constraint that will connect with the tblDepartment at the creation of a table.
CREATE TABLE [dbo].[tblEmployee]( [EmpID] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY, [FirstName] [nvarchar](255) NULL, [LastName] [nvarchar](255) NULL, [Education] [nvarchar](255) NULL, [YearlyIncome] [float] NULL, [Sales] [float] NULL, [DeptID] [int] NULL, CONSTRAINT [FK_tblDepartment_tblEmployee_DeptID] FOREIGN KEY([DeptID]) REFERENCES [dbo].[tblDepartment] ([ID]) ) GO
We added the CONSTRAINT statement at the end of the table creation. Refer to Create Table, Primary, Unique Constraint, Triggers, and referential integrity in SQL Server.
Let me use the SP_HELP procedure to check the table definition and the constraints

See our newly created foreignkey. You can also use the Object Explorer to achieve the same. To do so, Expand the tblEMployee, and expand Keys folder

Create on Existing table
In this example, we show you the steps to add Foreign Key in SQL Server on an existing table. For this, we are going to create a new table.
CREATE TABLE [dbo].[tblEmployee]( [EmpID] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY, [FirstName] [nvarchar](255) NULL, [LastName] [nvarchar](255) NULL, [Education] [nvarchar](255) NULL, [YearlyIncome] [float] NULL, [Sales] [float] NULL, [DeptID] [int] NULL ) GO
Messages
--------
Command(s) completed successfully.
Now let me add the constraint. Here, we use the Alter Table to alter the content, and then used the ADD Constraint statement to add the constraint.
ALTER TABLE [dbo].[tblEmployee] ADD CONSTRAINT [FK_tblDepartment_tblEmployee_DeptID] FOREIGN KEY([DeptID]) REFERENCES [dbo].[tblDepartment] ([ID])
Messages
--------
Command(s) completed successfully.
Create Foreign Key using SSMS
In this example, we will show you how to create a Foreign Key using the Management Studio. To do so, please go to the Object Explorer. Next, please Expand the Database folder, and select the table on which you want to create. Next, Right-click on it will open the context menu. Please choose the Design option.

It will open the corresponding table in design mode. Right-click on the DeptID column and select the Relationships option.

As you can see, there are no existing relationships. Please click on the Add button to add a new Sql Foreign key relationship.

Once you select the Add option, SSMS will create it for you.

Next, click on the Browse button beside the Tables and Columns Specification option. This property is used to specify the relation between the two.

We selected the Primary as the tblDepartment, and Column as ID.

Next, we selected the tblEmployee, and column as the Dept ID

Modify SQL Foreign Key
To modify SQL Server foreign key, go to the Database folder and select the table, then go to the Keys folder. Next, Right-click on the name and select the Modify option

Clicking the Modify option will open the corresponding table in design mode, along with the Relationships window.

Delete SQL Foreign Key using Query
Remember, You can’t alter the foreign constraint using the query. To modify the existing one, you have to drop (or delete) and recreate it. Please use the DROP Constraint statement along with the ALTER TABLE Statement to delete or drop Foreign key in Sql Server
ALTER TABLE [dbo].[tblEmployee] DROP CONSTRAINT [FK_tblDepartment_tblEmployee_DeptID]
Messages
-------
Command(s) completed successfully.
Delete Foreign Key Constraint using SSMS
Expand the Database folder, and choose the table on which your constraint holds, then go to the Keys folder. Next, Right-click on the name and select the Delete option

Once you select the Delete option, Delete Object window will open. Click OK to delete the constraint.

You can see that there is no Foreign Key in the Object explorer

To delete SQL foreign key, Within the object explorer, Expand the Database folder and Right-click on the table name, and click the Design option. Next, select the Relationships option to open this window. Now, Please select it, and click on the Delete button.
