How to Add a Not Null Constraint in MS-SQL

To add a NOT NULL constraint do the following:

alter table employee alter column last_bonus date not null;

IN THIS PAGE