SQL Server– Unique Constraint VS Unique Index
Both enforces uniqueness of the column. When we define an Unique constraint, SQL server creates an unique index (Unique non clustered index) on the column where Unique constraint is defined. Even though …
SQL Server– Unique Constraint VS Unique Index Read More