Categories
Sql Server

How to create FOREIGN KEY Constraint in Sql server

How to create FOREIGN KEY Constraint in Sql server A FOREIGN KEY in any table points to a PRIMARY KEY in another table. Let us Create a table Hightech:- Hightech table: Id FirstName City 1 Jai Delhi 2 Om Kolkata 3 Hari Haryana Here In table hightech Id is Primary Key of table Hightech The […]