top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How can we change the data type of a column of a table in SQL?

+2 votes
410 views
How can we change the data type of a column of a table in SQL?
posted Mar 13, 2015 by Amit Kumar Pandey

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes

alter table TableName
alter column ColumnName nvarchar(200) [null | not null]

answer Mar 13, 2015 by Tanmoy Debnath
...