Difference between primary key and unique key ?
By j Miracle
Here i will show what is the basic difference between primary key and unique key?
Both provides uniqueness of records.
Primary key does not allow null values. but unique key allows one null value.
Primary key creates clustured index on the column, unique key creates nonclustured index on the column.
Difference between primary key and unique key ? (1033 Views)