MS SQL Server Alter Table Add Foreign Key

The RazorSQL alter table tool includes an Add Foreign Key option for adding foreign keys to MS SQL Server database tables. The add foreign key function lists all of the columns of the table and allows the user to choose one or more columns to add to the foreign key for the table. It also lists the other tables available on the database so that the user can choose a referenced table and referenced column or columns.

Listed below is an example of the SQL generated by the MS SQL Server Alter Table Add Foreign Key function:

ALTER TABLE test.dbo.Employee ADD FOREIGN KEY (dno) REFERENCES test.dbo.Department(dnumber)

Below is a screen shot of the add foreign key function of the MS SQL Server alter table tool.

MS SQL Server Add Foreign Key