SQL NOT NULL Constraint: Example
SQL NOT NULL Constraint: Example
Example
CREATE TABLE Persons (
ID int NOT NULL,
LastName varchar(255) NOT NULL,
FirstName varchar(255) NOT NULL,
Age int
);
Try it Yourself »
ALTER TABLE Persons
MODIFY Age int NOT NULL;