IMG-LOGO

How to add a sql foreign key constraint into an existing table in SQL Server?

andy - 03 Oct, 2019 1856 Views 0 Comment

A foreign key constraint in SQL Server is used to link two tables together. It refers to the primary key of another table. The main purpose to use constraint is to ensure the integrity of the data between two tables. You will be prompted an error if you try to insert the id of another table that does not exist.

You can run the following SQL query to add a constraint foreign key into an existing table.

ALTER TABLE Table_Name
ADD CONSTRAINT FK_ID_Column_Name
FOREIGN KEY (ID_Column_Name) REFERENCES Table_Name(ID_Column_Name)
In some situations, if you end up need to remove the existing constraint foreign key. You can run the following SQL query.
ALTER TABLE Orders
DROP CONSTRAINT FK_ID_Column_Name

Comments

There are no comments available.

Write Comment
0 characters entered. Maximum characters allowed are 1000 characters.

Related Articles

How to restore database using SQL query in TSQL?

If you have a database backup bak file extension and want to restore it using SQL query You can use the built in RESTORE DATABASE function Remember in order to be able to restore a database successfully You need to ...

How to get all table sizes in TSQL?

To get the information about how much space or size used by tables You can retrieve the size information by linking multiple tables in sys tables There are two tables that hold this information The first one is the sys ...