我有这个简单的表(仅供测试):
create table table
(
key int not null primary key auto_increment,
name varchar(30)
);
然后我执行以下请求:
insert into table values ( null , 'one');// key=1
insert into table values ( null , 'two');// key=2
在这个阶段一切顺利,然后我关闭 H2 控制台并重新打开它并重新执行此请求:
insert into table values ( null , 'three');// key=33
最后,这是所有结果:
我不知道如何解决这个问题,如果它是一个真正的问题......等待作者的回应......