Difference between Primary Key and Unique Key 2019-09-29 10:07:32 Primary Key Enforces uniqueness of the column in a table. Default clustered index. Does not Allow nulls. Unique Key Enforces uniqueness of the column in a table. Default non-clustered index. Allows one null value. SQL SQL Questions