In this tutorial, we will learn how to use NOT NULL
constraint using SQL.
NULL
values.NOT NULL
constraint ensures that a column does not accept NULL
values.NULL
value in a column, then you have to use a NOT NULL
constraint on that column.To add a NOT NULL
constraint when a table is created, the statement is as follow:
Here Column "ID" and "Empname" does not allow null values when you INSERT
new records OR UPDATE
the existing records in a table, while "City", "Country", "Gender" and "Salary" allow NULL
values.
When to execute this statement will result in an error because column "ID" is NULL
which violates the NOT NULL
constraints specified rule on that column.
In above, both statements, when to execute this statement will result in an error because column "City" is null which violates the NOT NULL
constraints specified rule on that column.