How to Change Auto-Increment Value in MySQL
To change the auto-increment value of an id column in MySQL, you can use the ALTER TABLE statement with the AUTO_INCREMENT option.
The syntax to change the auto-increment value is as follows:
ALTER TABLE table_name AUTO_INCREMENT = new_value;
Here, 'table_name' is the name of the table you want to modify, and 'new_value' is the new auto-increment value you want to set.
For example, let's say you have a table named 'users' with an id column that you want to change the auto-increment value for:
ALTER TABLE users AUTO_INCREMENT = 100;
This will set the next auto-increment value for the id column to 100.
原文地址: http://www.cveoy.top/t/topic/pkyJ 著作权归作者所有。请勿转载和采集!