mssql add not null constraint to exisastint colunmn code example
Example: how to add not null constraint in sql
ALTER TABLE table_name MODIFY column_name datatype NOT NULL;
ALTER TABLE table_name MODIFY column_name datatype NOT NULL;