Answers for "to change the data type of a column in a table"

SQL
1

Change column data type sql

ALTER TABLE TableName 
ALTER COLUMN ColumnName NVARCHAR(200) [NULL | NOT NULL]
Posted by: Guest on August-03-2021

Code answers related to "to change the data type of a column in a table"

Code answers related to "SQL"

Browse Popular Code Answers by Language