What is the difference between unique index and primary key?
What is the difference between unique index and primary key? Primary key will not accept NULL values whereas Unique key can accept NULL values. A table can have only primary key whereas there can be multiple unique key on a table. A Clustered index automatically created when a primary key Read more…