MariaDB Tutorial MariaDB Advanced MariaDB Database Account Management MariaDB References

MariaDB - NOT NULL



By default, a column of a table holds NULL values. The MariaDB NOT NULL constraint is used to enforce a column to NOT accept NULL values. This ensures the column to always have a value. This implies that a new record can not be inserted without providing a value to this column. Similarly, this column can not be updated with a NULL value.

MariaDB NOT NULL constraint with CREATE TABLE

The below mentioned statement creates a table called Employee which contains five columns: EmpID, Name, City, Age and Salary in which NOT NULL constraint is applied on columns EmpID, Name and City.

CREATE TABLE Employee (
  EmpID INT NOT NULL,
  Name VARCHAR(255) NOT NULL,
  City VARCHAR(100) NOT NULL,
  Age INT,
  Salary DECIMAL(18,2)
);

MariaDB NOT NULL constraint with ALTER TABLE

In the above example, a table called Employee is created in which column Salary does not have NOT NULL constraint. To enforce NOT NULL constraint on this column, the following statement can be used:

ALTER TABLE Employee
MODIFY COLUMN Salary DECIMAL(18,2) NOT NULL;

Remove NOT NULL constraint

To drop the NOT NULL constraint from column City of above mentioned Employee table, the statement is given below:

ALTER TABLE Employee
MODIFY COLUMN City VARCHAR(100) NULL;