📜  h2 自动增量和唯一性 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:30.512000             🧑  作者: Mango

代码示例1
drop table test;
create table test(id bigint auto_increment, name varchar(255));
insert into test(name) values('hello');
insert into test(name) values('world');
select * from test;