make rows not nullable sql code example
Example 1: Change A filed to not null
ALTER TABLE
clients
ALTER COLUMN
phone
NVARCHAR(20) NOT NULL;
Example 2: add new column not null sql server
ALTER TABLE MY_TABLE
ADD STAGE INT NOT NULL
DEFAULT '0';