I am trying to change a column from a varchar(50) to a nvarchar(200). What is the SQL command to alter this table?
varchar(50)
nvarchar(200)
ALTER TABLE TableName ALTER COLUMN ColumnName NVARCHAR(200) [NULL | NOT NULL]
EDIT As noted NULL/NOT NULL should have been specified, see Rob's answer as well.
2.1m questions
2.1m answers
60 comments
57.0k users