Answers for "how to make a column not null in sql"

SQL
1

add new column not null sql server

ALTER TABLE MY_TABLE
ADD STAGE INT NOT NULL
DEFAULT '0';
Posted by: Guest on September-21-2020
0

change sql column from null to not null

ALTER TABLE [TABLE_NAME] CHANGE [COLUMN_NAME] [COLUMN_NAME] [COLUMN_TYPE] NOT NULL DEFAULT [DEFAULT];
Posted by: Guest on February-15-2021

Code answers related to "how to make a column not null in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language