MODIFY keyword in SQL SERVER -
does 'modify' keyword exist in sql server? preparing exam , have question in options there 'modify column' statement. googled no result, tried execute statement management studio did not let me.
thank you
in sql server, can alter table mytable alter column mycolumn
. in mysql , oracle, syntax alter table mytable modify column
.
see msdn docs on alter table.
currently, modify not reserved key word in sql server. however, linked article suggests, on list of future reserved words. microsoft not recommend using these words identifiers.
Comments
Post a Comment