boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

Difference between Primary Key and Unique Key

Updated on     Kisan Patel

This tutorial will explain you what is the difference between primary key and unique key.

In SQL Server, we have primary and unique keys which uniquely identify a record in database.

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 adds a clustered index. By default Unique key adds a UNIQUE non-clustered index.
A table can have only one PRIMARY KEY Columns. A table can have more than one UNIQUE Key Column.

Below is the example for defining a column as a PRIMARY KEY column while creating a table:

CREATE TABLE dbo.Customer
(
  Id INT NOT NULL PRIMARY KEY,
  FirstName VARCHAR(100)
)

Below is the example for defining a column as a UNIQUE KEY column while creating a table:

CREATE TABLE dbo.Customer
(
  Id INT NOT NULL UNIQUE,
  FirstName VARCHAR(100)
)

To set a column as primary key to the existing table in SQL Server:

ALTER TABLE dbo.Customer
(
  ADD PRIMARY KEY (Id)
)

To set a column as unique key to the existing table in SQL Server:

ALTER TABLE dbo.Customer
(
  ADD UNIQUE (Id)
)

SQL Server

Leave a Reply