Translate

Tuesday, 22 August 2017

alter column size in sql query

I have a table with name "Mst_Student" having column Name with length 20 and I want to increase size
upto 50 below is the code I write in sql interface

ALTER TABLE Mst_Student
ALTER COLUMN Name varchar(50)

No comments:

Post a Comment