HI WELCOME TO KANSIRIS

Difference between Primary Key and Unique Key

Leave a Comment
In SQL Server, we have two keys which distinctively or uniquely identify a record in the database. Both the keys seems identical, but actually both are different in features and behaviours. In this article, I would like to share the key difference between primary key and unique key. 
Difference between Primary Key & Unique Key
Primary Key
Unique Key
Primary Key can't accept null values.
Unique key can accept only one null value.
By default, Primary key is clustered index and data in the database table is physically organized in the sequence of clustered index.
By default, Unique key is a unique non-clustered index.
We can have only one Primary key in a table.
We can have more than one unique key in a table.
Primary key can be made foreign key into another table.
In SQL Server, Unique key can be made foreign key into another table.

Define Primary key and Unique key


  1. CREATE TABLE Employee

  2. (

  3. EmpID int PRIMARY KEY, --define primary key

  4. Name varchar (50) NOT NULL,

  5. MobileNo int UNIQUE, --define unique key

  6. Salary int NULL

  7. )


Summary
I hope you will enjoy these tricks while programming with SQL Server. I would like to have feedback from my blog readers. Your valuable feedback, question, or comments about this article are always welcome.

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.