Search code examples
sql-serveralter-table

Adding column between two other columns in SQL server


Can you add a column to a table inserting it in between two existing columns in SQL Server without dropping and re-creating the table?


Solution

  • The simple answer is no. Is there a reason why column order is important to you?