Changing The Datatype Of Table Column June 27, 2023 Post a Comment A very simple MSSQL command is giving error. create table emp (empid char(6)); insert into emp values(3); ALTER TABLE emp MODIFY empid char(10); //The error line :@ Error >Solution 1: Change it to ALTERTABLE emp ALTERCOLUMN empid char(10) CopyHave a look at ALTER TABLE (Transact-SQL)and search for ALTER COLUMN examples Share Post a Comment for "Changing The Datatype Of Table Column"
Post a Comment for "Changing The Datatype Of Table Column"