What is Constraint in SQL?

Constraints are the rules applied on data columns on table. These are used to bound the type of data that can go into a table. This ensures the accuracy and consistency of the data. If there is any violation between the constraint and the data action, the action is aborted by the constraint.

Wish to crack SQL interviews? Intellipaat’s Top SQL Interview Questions are meant only for you!

Watch this SQL Constraints Video


SQL Constraints can be specified when the table is created or after the table is created.
SQL Constraints could be column level or table level. Column level constraints are applied only to one column, whereas table level constraints are applied to the whole table.

Go for this in-depth job-oriented SQL Training Course now!

Constraints in SQL

Some of the commonly used Constraints in SQL are:

  • Not NULL Constraints in SQL
  • UNIQUE Constraints in SQL
  • PRIMARY KEY Constraints in SQL
  • FOREIGN KEY Constraints in SQL
  • CHECK Constraints in SQL
  • DEFAULT Constraints in SQL

Become a Database Architect

  • Not NULL:

It indicates that the column cannot have null value.

  • UNIQUE:

It ensures that all the values in the column are unique.

  • PRIMARY KEY:

It is a key which helps you to find the data from the table. It must be unique and not null.

Enrol yourself for SQL certification and give a head-start to your career in SQL!

  • FOREGIN KEY

A foreign key is a field in a relational table that matches the primary key column of another table.

  • CHECK

It checks whether all values meets the specific condition or not.

  • DEFAULT

It provides the default value when the value is not specified.
Syntax:

CREATE TABLE table_name
(
Column1 datatype (size) constraint_name,
Column2 datatype (size) constraint_name,
Column3 datatype (size) constraint_name,
……….
);

Visit our SQL Community to get answers to all your queries!

Course Schedule

Name Date Details
SQL Training 25 Mar 2023(Sat-Sun) Weekend Batch
View Details
SQL Training 01 Apr 2023(Sat-Sun) Weekend Batch
View Details
SQL Training 08 Apr 2023(Sat-Sun) Weekend Batch
View Details

Leave a Reply

Your email address will not be published. Required fields are marked *