i m not able to modify table in SQL server. i m new to databases.
use work
go
alter table employee
modify id varchar(20)
error message is-
Msg 102, Level 15, State 1, Line 1
Incorrect syntax near 'modify'
thanks
|
i m not able to modify table in SQL server. i m new to databases.
error message is-
thanks | |||||||
feedback
|
|
You have the syntax for altering a table wrong. You need:
| |||
feedback
|
|
The syntax should be
Here is the ALTER COLUMN syntax. http://msdn.microsoft.com/en-us/library/ms190273.aspx Now, having said all that, I have a question for you.. Why is your ID column a VarChar as opposed to an Identity Column? | |||||||||||
feedback
|