To create a NOT NULL constraint on the "Age" column when the "Persons" table is already created, use the following SQL:
ALTER TABLE Persons
MODIFY Age int NOT NULL;
MODIFY Age int NOT NULL;
Practice Excercise Practice now
To create a NOT NULL constraint on the "Age" column when the "Persons" table is already created, use the following SQL:
Practice Excercise Practice now