alter table set column not null sql server code example
Example 1: change sql column from null to not null
ALTER TABLE [TABLE_NAME] CHANGE [COLUMN_NAME] [COLUMN_NAME] [COLUMN_TYPE] NOT NULL DEFAULT [DEFAULT];
Example 2: add new column not null sql server
ALTER TABLE MY_TABLE
ADD STAGE INT NOT NULL
DEFAULT '0';