Add Column on SQL Server on Specific Place?

前端 未结 9 1709
-上瘾入骨i
-上瘾入骨i 2021-01-19 02:12

I would like to know if there\'s a way to add a column to an SQL Server table after it\'s created and in a specific position??

Thanks.

9条回答
  •  轮回少年
    2021-01-19 02:28

    The safest way to do this is.

    • Create your new table with the correct column order
    • Copy the data from the old table.
    • Drop the Old Table.

提交回复
热议问题