📜  如何从 sql server 中的列中删除标识 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:04:55.498000             🧑  作者: Mango

代码示例1
If you need to keep the data, but remove the IDENTITY column, you will need to:
Create a new column.
Transfer the data from the existing IDENTITY column to the new column.
Drop the existing IDENTITY column.
Rename the new column to the original column name.