How to Remove a Not Null Constraint

To drop a NOT NULL constraint do the following:

alter table employee alter column last_bonus drop not null;

IN THIS PAGE