Hello,
I need to add a column to an existing table using a script. I get an error when I use the AFTER clause.
Here's the statement:
ALTER TABLE testTable
Add newColumn varchar(200) NULL AFTER someColumnName
We are using SQL Server 2000.
There error I'm getting is:
Incorrect syntax near 'AFTER'
I need to add a column to an existing table using a script. I get an error when I use the AFTER clause.
Here's the statement:
ALTER TABLE testTable
Add newColumn varchar(200) NULL AFTER someColumnName
We are using SQL Server 2000.
There error I'm getting is:
Incorrect syntax near 'AFTER'