How to Add a Not Null Constraint in MySQL

To add a NOT NULL constraint do the following:

alter table employee modify last_bonus_date date not null;

IN THIS PAGE