How to Add a Not Null Constraint

To add a NOT NULL constraint do the following:

alter table employee alter column last_bonus set not null;

IN THIS PAGE