EDUCBA

EDUCBA

MENUMENU
  • Blog
  • Free Courses
  • All Courses
  • All in One Bundle
  • Login
Home Data Science Data Science Tutorials SQL Tutorial Unique Key in SQL

Unique Key in SQL

By Priya PedamkarPriya Pedamkar

Unique Key in SQL

Introduction to Unique Key in SQL

A unique key is a constraint in SQL which helps in uniquely identifying a record in the data table. It is can be considered somewhat similar to the Primary key as both of them guarantees the uniqueness of a record. But unlike primary key, a unique key can accept NULL values and it can be used on more than one column of the data table.

Note: A unique key can accept NULL value only once and it cannot have duplicate values.

Why do we need Unique Key in SQL?

A unique key is primarily used for serving the following functions :

Start Your Free Data Science Course

Hadoop, Data Science, Statistics & others

1. For fulfilling a specific business case

Suppose we have a case where the primary key uniquely identifies a record in the table. But we want a particular column other than the primary key column to be unique. This can be ensured by a unique key constraint. For example, we have a “teachers” table where the teacher is the primary key and it uniquely identifies the teacher. But we also want to ensure that each teacher teaches a unique subject. So, here unique key constraint comes to our rescue.

2. For maintaining data integrity and extending the primary key

You may use a unique key whenever you want to ensure uniqueness for N number of columns in a data table. For example, we have a table called “HeadofDept” which contains employeeID and department. EmployeeID is the primary key but along with this we also want to ensure that one employee should not handle more than one department. So, in this case, we can use a Unique key constraint on the department to ensure uniqueness.

3. For speeding up information retrieval

We should understand that a unique key is a combination of a unique index and a unique constraint. Hence, a unique index helps in speeding up the retrieval performance.

4. For reducing overheads in joining tables

The unique index ensures the uniqueness of a record and hence can be used for joining data tables. This will simplify the logic and reduce overhead on the human brain.

Working of Unique Key in SQL

The working of the unique key in SQL is given below:

1. Unique Key Constraint with CREATE TABLE statement

Syntax

CREATE TABLE table_name
(
Column_name1 datatype [NULL | NOT NULL] UNIQUE,
Column_name2 datatype [NULL | NOT NULL],
Column_name3 datatype [NULL | NOT NULL]
);

This is the basic SQL syntax for creating a unique key constraint using the CREATE TABLE clause.

Parameters

The parameters used here are:

  • CREATE TABLE: This statement is used for creating a new table in a database.
  • Column_name1, Column_name2,Column_name3: Mention the name of columns you want to create in the table.
  • datatype: Mention the datatype of each column in the table.
  • [NULL | NOT NULL]: Mention if it can hold NULL values or not
  • UNIQUE: Unique keyword written with the column name creates a unique key constraint. It ensures that there are no duplicate values in that particular column.

Of the above-mentioned parameters, CREATE TABLE, one column_name and UNIQUE are mandatory parameters.

Example #1 – While Creating a Table.

Let’s look at an example of how to create a unique key constraint in SQL Server using the CREATE TABLE statement. We will be creating a table named “HeadofDepts” with columns such as EmployeeID, LastName, FirstName, and Department.

On one column “EmployeeID”

Code:

CREATE TABLE HeadofDepts(
EmployeeID int NOT NULL UNIQUE,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Department varchar(255)
);

Output:

Unique key in SQL

We can check from the table properties if we were successfully able to create a unique key constraint.

 multiple Columns

On multiple columns “EmployeeID” and “Department”

Code:

CREATE TABLE HeadofDepts(
EmployeeID int NOT NULL,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Department varchar(255),
CONSTRAINT unique_hod UNIQUE (EmployeeID,Department)
);

Output:

Unique key in SQL

We can check from the table properties if we were successfully able to create the unique key “unique_hod” constraint.

 table properties

Note: I have removed the unique key constraint of EmployeeID before creating it on EmployeeId and Department.

In the above example, we have created a unique key constraint, called “unique_hod”. This unique key will ensure that EmployeeID and Department name remains unique and consistent throughout the data table

2. Unique Key Constraint with ALTER TABLE statement

Syntax

ALTER TABLE tablename
ADD UNIQUE (column_name);

Parameter:

The parameters used here are :

  • ALTER TABLE: This statement is used to add and drop constraints from an existing table.
  • Tablename: Name of the existing table which you want to modify.
  • ADD UNIQUE: Unique keyword written with the column name creates a unique key constraint. It ensures that there are no duplicate values in that particular column.
  • Column_name: Name of the column where you want uniqueness.
Example #2 – While Altering a Table.

Let’s look at an example of how to create a unique key constraint in SQL Server using the ALTER TABLE statement.

On one column “EmployeeID”

ALTER TABLE HeadofDepts
ADD UNIQUE (EmployeeID);

Output:

ALTER TABLE

We can check from the table properties if we were successfully able to alter the table properties to add the unique key constraint.

unique key constraint

On multiple columns “EmployeeID” and “Department”

ALTER TABLE HeadofDepts
ADD CONSTRAINT unique_hod (EmployeeID, Department);

In the above example, we have created a unique key constraint, called “unique_hod”. This unique key will ensure that EmployeeID and Department name remains unique and consistent throughout the data table.

HeadofDepts

HeadofDepts

3. Unique Key Constraint with DROP TABLE statement

Syntax

ALTER TABLE table_name
DROP CONSTRAINT constraint_name;

The parameters used here are :

  • ALTER TABLE: This statement is used to add and drop constraints from an existing table.
  • Tablename: Name of the existing table which you want to modify.
  • DROP CONSTRAINT: Unique keyword written with the column name creates a unique key constraint. It ensures that there are no duplicate values in that particular column.
  • Constraint_name: Name of the unique key which you want to delete.
Example #3 – To Remove of Unique Key Constraints

Let’s look at an example of removing a unique key constraint in SQL Server using the DROP TABLE statement.

ALTER TABLE HeadofDepts
DROP CONSTRAINT unique_hod;

Output:

DROP CONSTRAINT

We can check from the table properties if we were successfully able to drop the unique key “unique_hod” constraint.

 “unique_hod”

In the above example, we have removed the unique key constraint, “unique_hod” which we created using an alter table and create table statements.

Recommended Articles

We hope that this EDUCBA information on “Unique Key in SQL” was beneficial to you. You can view EDUCBA’s recommended articles for more information.

  1. Composite Key in SQL
  2. IF ELSE Statement in SQL
  3. LIKE Query in SQL
  4. PostgreSQL WHERE Clause
  5. Examples of PostgreSQL Constraints
  6. Parameters and Examples of SQL Delete Join
All in One Excel VBA Bundle
500+ Hours of HD Videos
15 Learning Paths
120+ Courses
Verifiable Certificate of Completion
Lifetime Access
Financial Analyst Masters Training Program
1000+ Hours of HD Videos
43 Learning Paths
250+ Courses
Verifiable Certificate of Completion
Lifetime Access
All in One Data Science Bundle
1500+ Hour of HD Videos
80 Learning Paths
360+ Courses
Verifiable Certificate of Completion
Lifetime Access
All in One Software Development Bundle
3000+ Hours of HD Videos
149 Learning Paths
600+ Courses
Verifiable Certificate of Completion
Lifetime Access
Primary Sidebar
All in One Data Science Bundle1500+ Hour of HD Videos | 80 Learning Paths | 360+ Courses | Verifiable Certificate of Completion | Lifetime Access
Financial Analyst Masters Training Program1000+ Hours of HD Videos | 43 Learning Paths | 250+ Courses | Verifiable Certificate of Completion | Lifetime Access
Footer
About Us
  • Blog
  • Who is EDUCBA?
  • Sign Up
  • Live Classes
  • Corporate Training
  • Certificate from Top Institutions
  • Contact Us
  • Verifiable Certificate
  • Reviews
  • Terms and Conditions
  • Privacy Policy
  •  
Apps
  • iPhone & iPad
  • Android
Resources
  • Free Courses
  • Database Management
  • Machine Learning
  • All Tutorials
Certification Courses
  • All Courses
  • Data Science Course - All in One Bundle
  • Machine Learning Course
  • Hadoop Certification Training
  • Cloud Computing Training Course
  • R Programming Course
  • AWS Training Course
  • SAS Training Course

ISO 10004:2018 & ISO 9001:2015 Certified

© 2023 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

By continuing above step, you agree to our Terms of Use and Privacy Policy.
*Please provide your correct email id. Login details for this Free course will be emailed to you
Let’s Get Started

By signing up, you agree to our Terms of Use and Privacy Policy.

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA Login

Forgot Password?

By signing up, you agree to our Terms of Use and Privacy Policy.

This website or its third-party tools use cookies, which are necessary to its functioning and required to achieve the purposes illustrated in the cookie policy. By closing this banner, scrolling this page, clicking a link or continuing to browse otherwise, you agree to our Privacy Policy

Loading . . .
Quiz
Question:

Answer:

Quiz Result
Total QuestionsCorrect AnswersWrong AnswersPercentage

Explore 1000+ varieties of Mock tests View more