alter column in a table sql server constraint code example
Example 1: sql server alter column
ALTER TABLE table_name
ALTER COLUMN column_name new_data_type(size);
Example 2: sql change column in existing table
'This adds 'NOT NULL' to excisting column counting in the table mytable'
ALTER TABLE mytable ALTER COLUMN counting INT NOT NULL;