How to Remove a Not Null Constraint in MS-SQL

To remove a NOT NULL constraint in MS-SQL Server re-define the column as a NULL:

alter table employee alter column last_bonus date null;

IN THIS PAGE