I need a SQL query which add a new column after an existing column, so the column will be added in a specific order.
Please suggest me if any ALTER
quer
It's possible.
First, just add each column the usual way (as the last column).
Secondly, in SQL Server Management Studio
Get into Tools => Options.
Under 'Designers' Tab => 'Table and Database Designers' menu, uncheck the option 'Prevent saving changes that require table re-creation'.
Afterwards, right click on your table and choose 'Design'. In 'Design' mode just drag the columns to order them.
Don't forget to save.