SQL Constraints are rules used to limit the type of data that can go into a table, to maintain the accuracy and integrity of the data inside table.
Constraints can be divided into the following two types,
Constraints are used to make sure that the integrity of data is maintained in the database. Following are the most used constraints that can be applied to a table.
NOT NULL
ConstraintBy default, a column can hold NULL values. If you do not want a column to have a NULL value, use the NOT NULL constraint.
One important point to note about this constraint is that it cannot be defined at table level.
NOT NULL
constraint:CREATE TABLE Student
( s_id int NOT NULL,
name varchar(60),
age int
);
The above query will declare that the s_id field of Student table will not take NULL value.
If you wish to alter the table after it has been created, then we can use the ALTER command for it:
ALTER TABLE Student
MODIFY s_id int NOT NULL;
UNIQUE
ConstraintIt ensures that a column will only have unique values. A UNIQUE constraint field cannot have any duplicate data.
Here we have a simple CREATE
query to create a table, which will have a column s_id with unique values.
CREATE TABLE Student
( s_id int NOT NULL,
name varchar(60),
age int NOT NULL UNIQUE
);
The above query will declare that the s_id field of Student table will only have unique values and wont take NULL value.
If you wish to alter the table after it has been created, then we can use the ALTER command for it:
ALTER TABLE Student
MODIFY age INT NOT NULL UNIQUE;
The above query specifies that s_id field of Student table will only have unique value.
Primary key constraint uniquely identifies each record in a database. A Primary Key must contain unique value and it must not contain null value. Usually Primary Key is used to index the data inside the table.
CREATE table Student
( s_id int PRIMARY KEY,
Name varchar(60) NOT NULL,
Age int);
The above command will creates a PRIMARY KEY on the s_id
.
ALTER table Student
ADD PRIMARY KEY (s_id);
The above command will creates a PRIMARY KEY on the s_id
.
Foreign Key is used to relate two tables. The relationship between the two tables matches the Primary Key in one of the tables with a Foreign Key in the second table.
To understand FOREIGN KEY, let's see its use, with help of the below tables:
Customer_Detail Table
c_id | Customer_Name | address |
---|---|---|
101 | Adam | Noida |
102 | Alex | Delhi |
103 | Stuart | Rohtak |
Order_Detail Table
Order_id | Order_Name | c_id |
---|---|---|
10 | Order1 | 101 |
11 | Order2 | 103 |
12 | Order3 | 102 |
In Customer_Detail table, c_id is the primary key which is set as foreign key in Order_Detail table. The value that is entered in c_id which is set as foreign key in Order_Detail table must be present in Customer_Detail table where it is set as primary key. This prevents invalid data to be inserted into c_id column of Order_Detail table.
If you try to insert any incorrect data, DBMS will return error and will not allow you to insert the data.
CREATE table Order_Detail(
order_id int PRIMARY KEY,
order_name varchar(60) NOT NULL,
c_id int FOREIGN KEY REFERENCES Customer_Detail(c_id)
);
In this query, c_id in table Order_Detail is made as foriegn key, which is a reference of c_id column in Customer_Detail table.
ALTER table Order_Detail
ADD FOREIGN KEY (c_id) REFERENCES Customer_Detail(c_id);
There are two ways to maintin the integrity of data in Child table, when a particular record is deleted in the main table. When two tables are connected with Foriegn key, and certain data in the main table is deleted, for which a record exits in the child table, then we must have some mechanism to save the integrity of data in the child table.
ERROR : Record in child table exist
CHECK
ConstraintCHECK constraint is used to restrict the value of a column between a range. It performs check on the values, before storing them into the database. Its like condition checking before saving data into a column.
CHECK
constraint at Table LevelCREATE table Student(
s_id int NOT NULL CHECK(s_id > 0),
Name varchar(60) NOT NULL,
Age int
);
The above query will restrict the s_id value to be greater than zero.
CHECK
constraint at Column LevelALTER table Student ADD CHECK(s_id > 0);
Related Tutorials: