I get an error with the following command
ALTER TABLE MyTable MODIFY Dest varchar(11)
I just want to change to length of the column Dest from 10 to 11 only, and there is no dependencies for this table , but I have error of "Incorrect syntax near 'MODIFY' ", which I don't see "any" syntax error at all !
could someone tells me why?
Thanks
ALTER TABLE MyTable MODIFY Dest varchar(11)
I just want to change to length of the column Dest from 10 to 11 only, and there is no dependencies for this table , but I have error of "Incorrect syntax near 'MODIFY' ", which I don't see "any" syntax error at all !
could someone tells me why?
Thanks