EDUCBA

EDUCBA

MENUMENU
  • Free Tutorials
  • Free Courses
  • Certification Courses
  • 360+ Courses All in One Bundle
  • Login

Unique Key in SQL

By Priya PedamkarPriya Pedamkar

Home » Data Science » Data Science Tutorials » SQL Tutorial » Unique Key in SQL

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)
);

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)
);

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);

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;

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

This is a guide to Unique Key in SQL. Here we discuss the introduction, need and the Working of Unique Key in SQL with respective syntax, parameters, and examples. You can also go through our other related articles to learn more–

  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

SQL Training Program (7 Courses, 8+ Projects)

7 Online Courses

8 Hands-on Projects

73+ Hours

Verifiable Certificate of Completion

Lifetime Access

Learn More

0 Shares
Share
Tweet
Share
Primary Sidebar
SQL Tutorial
  • Keys
    • SQL Keys
    • Primary Key in SQL
    • Foreign Key in SQL
    • Unique Key in SQL
    • Alternate Key in SQL
    • SQL Super Key
  • Basic
    • What is SQL
    • Careers in SQL
    • Careers in SQL Server
    • IS SQL Microsoft?
    • SQL Management Tools
    • What is SQL Developer
    • Uses of SQL
    • How to Install SQL Server
    • What is SQL Server
    • Database in SQL
    • SQL Data Types
    • SQL Keywords
    • Composite Key in SQL
    • SQL Constraints
    • Transactions in SQL
    • First Normal Form
    • SQL Server Data Types
    • SQL Administration
    • SQL Variables
    • SQL Enum
    • Cheat sheet SQL
  • Operators
    • SQL Operators
    • SQL Arithmetic Operators
    • SQL Logical Operators
    • SQL String Operators
    • Ternary Operator in SQL
  • Commands
    • SQL Commands
    • SQL Alter Command
    • SQL Commands Update
    • SQL DML Commands
    • SQL DDL Commands
    • FETCH in SQL
  • Clause
    • SQL Clauses
    • SQL IN Operator
    • SQL LIKE Clause
    • SQL NOT Operator
    • SQL Minus
    • SQL WHERE Clause
    • SQL with Clause
    • SQL HAVING Clause
    • GROUP BY clause in SQL
    • SQL GROUP BY DAY
    • ORDER BY Clause in SQL
    • SQL ORDER BY CASE
    • SQL ORDER BY DATE
    • SQL ORDER BY Alphabetical
    • SQL ORDER BY Ascending
    • SQL Order by Count
    • SQL GROUP BY Month
    • SQL GROUP BY Multiple Columns
    • SQL GROUPING SETS
  • Queries
    • SQL Insert Query
    • SQL SELECT Query
    • SQL SELECT RANDOM
    • SQL Except Select
    • SQL Subquery
    • SQL SELECT DISTINCT
    • SQL WITH AS Statement
  • Functions
    • SQL Date Function
    • SQL String Functions
    • SQL Compare String
    • SQL Window Functions
    • SQL Timestamp
    • SQL TO_DATE()
    • SQL DATEADD()
    • SQL DATEDIFF()
    • ANY in SQL
    • LIKE Query in SQL
    • BETWEEN in SQL
    • LTRIM() in SQL
    • TOP in SQL
    • SQL Select Top
    • Merge SQL
    • SQL TRUNCATE()
    • SQL UNION
    • SQL ALL
    • SQL INTERSECT
    • SQL Alias
    • SQL Server Substring
    • CUBE in SQL
    • SQL RANK()
    • SQL MOD()
    • SQL CTE
    • SQL LAG()
    • SQL MID
    • SQL avg()
    • SQL WEEK
    • SQL DELETE
    • SQL DATEPART()
    • SQL DECODE()
    • SQL DENSE_RANK()
    • SQL NTILE()
    • SQL NULLIF()
    • SQL Stuff
    • SQL Ceiling
    • SQL EXISTS
    • SQL LEAD()
    • SQL COALESCE
    • SQL BLOB
    • SQL ROW_NUMBER
    • SQL Server Replace
    • SQL Server Permission
    • T-SQL INSERT
    • SQL Ranking Function
  • Joins
    • Join Query in SQL
    • Types of Joins in SQL
    • Types of Joins in SQL Server
    • SQL Inner Join
    • SQL Join Two Tables
    • SQL Delete Join
    • SQL Left Join
    • SQL Right Join
    • SQL Cross Join
    • SQL Outer Join
    • SQL Full Join
    • SQL Self Join
    • Natural Join SQL
    • SQL Multiple Join
  • Advanced
    • SQL Formatter
    • SQL Injection Attack
    • Aggregate Functions in SQL
    • IF ELSE Statement in SQL
    • SQL CASE Statement
    • SQL While Loop
    • SQL INSTR()
    • What is Procedure in SQL
    • Stored Procedure in SQL?
    • SQL Server Constraints
    • SQL DELETE ROW
    • Column in SQL
    • Table in SQL
    • SQL Virtual Table
    • SQL Merge Two Tables
    • SQL Table Partitioning
    • SQL Temporary Table
    • SQL Clone Table
    • SQL Rename Table
    • SQL LOCK TABLE
    • SQL Clear Table
    • SQL DESCRIBE TABLE
    • SQL Mapping
    • Cursors in SQL
    • AND in SQL
    • Wildcard in SQL
    • SQL FETCH NEXT
    • SQL Views
    • SQL Delete View
    • Triggers in SQL
    • SQL UPDATE Trigger
    • SQL AFTER UPDATE Trigger
    • SQL Update Statement
    • SQL DROP TRIGGER
    • Types of SQL Views
    • SQL Port
    • SQL Clustered Index
    • SQL COMMIT
    • Distinct Keyword in SQL
    • PARTITION BY in SQL
    • SQL Set Operators
    • SQL UNION ALL
    • Metadata in SQL
    • SQL Bulk Insert
    • Array in SQL
    • SQL REGEXP
    • JSON in SQL
    • SQL For loop
    • EXPLAIN in SQL
    • SQL Cluster
    • SQL Backup
    • SQL Pattern Matching
    • SQL Users
    • ISNULL SQL Server
    • SQL pivot
    • SQL Import CSV
  • Interview Questions
    • SQL Interview Questions
    • Advance SQL Interview Questions
    • SQL Joins Interview Questions
    • SQL Server Interview Questions

Related Courses

JDBC Training Course

PHP course

Windows 10 Training

SQL Course Training

PL/SQL Certification Courses

Oracle Certification Courses

Footer
About Us
  • Blog
  • Who is EDUCBA?
  • Sign Up
  • 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

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

EDUCBA Login

Forgot Password?

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

*Please provide your correct email id. Login details for this Free course will be emailed to you
Book Your One Instructor : One Learner Free Class

Let’s Get Started

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

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

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

Special Offer - SQL Training Program (7 Courses, 8+ Projects) Learn More