如何获取MySQL中Identity列的种子值?
为此,您可以使用SHOWVARIABLES命令-
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。
让我们首先创建一个表-
create table DemoTable -> ( -> StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY -> );
使用插入命令在表中插入一些记录-
insert into DemoTable values(); insert into DemoTable values();
使用select语句显示表中的所有记录-
select *from DemoTable;
输出结果
这将产生以下输出-
+-----------+ | StudentId | +-----------+ | 1 | | 2 | +-----------+ 2 rows in set (0.00 sec)
现在您可以控制AUTO_INCREMENT-
alter table DemoTable AUTO_INCREMENT=1000; Records: 0 Duplicates: 0 Warnings: 0
使用插入命令在表中插入一些记录-
insert into DemoTable values(); insert into DemoTable values();
使用select语句显示表中的所有记录-
select *from DemoTable;
输出结果
这将产生以下输出-
+-----------+ | StudentId | +-----------+ | 1 | | 2 | | 1000 | | 1001 | +-----------+ 4 rows in set (0.00 sec)