What is difference between unique key with 'not null' constraint and primary key?

后端 未结 4 1151
深忆病人
深忆病人 2020-12-31 11:02

I want to know difference between these two key.

When the Unique key with not null constrain in terms of how they are stored in database

and wh

4条回答
  •  失恋的感觉
    2020-12-31 11:54

    a. Both primary key and unique key enforce uniqueness of the column on which they are defined. But by default, the primary key creates a clustered index on the column, whereas unique key creates a non-clustered index by default. Another major difference is that primary key doesn’t allow NULLs, but unique key allows one NULL only.

提交回复
热议问题