How to Remove a Not Null Constraint

To drop a NOT NULL constraint do the following:

alter table employee modify last_bonus null;

IN THIS PAGE