How do you implement one-to-one in SQL Server?- One to one is implemented using single table by establishing relationship between same type of columns in a table. - It can be created using primary key, unique key and foreign key constraints. - It is defined as the relationship between two tables where both the tables should be associated with each other on only one matching row.
|