Answers for "how to remove identity from a column in sql server"

SQL
1

how to remove identity from a column in sql server

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.
Posted by: Guest on May-07-2020

Code answers related to "how to remove identity from a column in sql server"

Code answers related to "SQL"

Browse Popular Code Answers by Language