how to add a not null column to an existing table in sql table with data code example
Example: add new column not null sql server
ALTER TABLE MY_TABLE
ADD STAGE INT NOT NULL
DEFAULT '0';
ALTER TABLE MY_TABLE
ADD STAGE INT NOT NULL
DEFAULT '0';