如何在 MySQL 中获取标识列的种子值?
为此,可以使用 SHOW VARIABLES 命令 −
mysql> SHOW VARIABLES LIKE 'auto_inc%';
输出
将生成以下输出 −
+--------------------------+-------+ | Variable_name | Value | +--------------------------+-------+ | auto_increment_increment | 1 | | auto_increment_offset | 1 | +--------------------------+-------+ 2 rows in set (0.95 sec)
可以在外部控制 AUTO_INCREMENT。
让我们首先创建一个表 −
mysql> create table DemoTable -> ( -> StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY -> ); Query OK, 0 rows affected (0.94 sec)
使用插入命令在表中插入一些记录 −
mysql> insert into DemoTable values(); Query OK, 1 row affected (0.44 sec) mysql> insert into DemoTable values(); Query OK, 1 row affected (0.26 sec)
使用选择语句显示表中的所有记录 −
mysql> select *from DemoTable;
输出
将生成以下输出 −
+-----------+ | StudentId | +-----------+ | 1 | | 2 | +-----------+ 2 rows in set (0.00 sec)
现在可以控制 AUTO_INCREMENT −
mysql> alter table DemoTable AUTO_INCREMENT=1000; Query OK, 0 rows affected (0.50 sec) Records: 0 Duplicates: 0 Warnings: 0
使用插入命令在表中插入一些记录 −
mysql> insert into DemoTable values(); Query OK, 1 row affected (0.51 sec) mysql> insert into DemoTable values(); Query OK, 1 row affected (1.37 sec)
使用选择语句显示表中的所有记录 −
mysql> select *from DemoTable;
输出
将生成以下输出 −
+-----------+ | StudentId | +-----------+ | 1 | | 2 | | 1000 | | 1001 | +-----------+ 4 rows in set (0.00 sec)
广告