How does SQL Server modify the auto-increment column value and corresponding solutions?
A special task encountered in today's work is to change the values of the two auto-incrementing columns.Since the SQL Server platform has previously migrated the
MyISAM data table
After a record with the maximum number is deleted, the number cannot be reused.
You can use the "auto_increment = N" option to specify an auto-increment initial value when creating a table.
You can use the alter table table_name
SqlAUTO INCREMENT Field
Auto-increment will generate a unique number when the new record is inserted into the table.
AUTO INCREMENT FieldWe typically want to automatically create a value for the primary key field each time a new record
Modify a column in a table to auto-increment.
Yesterday, a student asked me, "If a table has been created, can I change one field to auto-increment ?", "Yes, but there is no need to modify it. We should design it when creating a table," I said. At
AUTO INCREMENT FieldWe typically want to automatically create a value for the primary key field each time a new record is inserted.We can create a auto-increment field in the table.Syntax for MySQLThe following SQL statement defines the "p_id"
SQL ID columnI. Definition and features of an ID column
The ID column in SQL Server, also known as the identifier column, is also called an auto-incrementing column.This type of column has the following three features:
1. The column data type is
Method 1 for modifying a column in a DB2 table as an auto-increment primary key) to change a column in the table to auto-increment, run the following command:
Alter table alter column set generated always as identity (start with 1,increment by 1)
Simple Method for setting ID field auto-increment when creating a table on SQL server, SQL Field
Open the database table to be set and click the field to be set, such as id. The column attribute table of id appears below.
In column attributes,
Auto-increment will generate a unique number when the new record is inserted into the table, which is explained in this article.
AUTO INCREMENT Field
We typically want to automatically create a value for the primary key field each time a new record
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.