更改 MySQL 中的自动增量计数器?

mysqlmysqli database

在 MySQL 中,自动增量计数器默认从 0 开始,但如果您希望自动增量从其他数字开始,请使用以下语法。

ALTER TABLE yourTable auto_increment=yourIntegerNumber;

为了理解上述语法,让我们首先创建一个表。创建表的查询如下。

mysql> create table startAutoIncrement
-> (
-> Counter int auto_increment ,
-> primary key(Counter)
-> );
Query OK, 0 rows affected (0.90 sec)

实现上述语法,从 20 开始自动递增。查询如下。

mysql> alter table startAutoIncrement auto_increment=20;
Query OK, 0 rows affected (0.30 sec)
Records: 0 Duplicates: 0 Warnings: 0

使用 insert 命令在表中插入一些记录。 查询语句如下。

mysql> insert into startAutoIncrement values();
Query OK, 1 row affected (0.20 sec)

mysql> insert into startAutoIncrement values();
Query OK, 1 row affected (0.14 sec)

mysql> insert into startAutoIncrement values();
Query OK, 1 row affected (0.18 sec)

现在您可以检查自动增量开始的表记录。我们将自动增量更改为从上面的 20 开始。

以下是使用 select 语句显示表中所有记录的查询。

mysql> select *from startAutoIncrement;

以下是输出。

+---------+
| Counter |
+---------+
| 20      |
| 21      |
| 22      |
+---------+
3 rows in set (0.00 sec)

相关文章