Answers for "h2 auto increment and unique"

SQL
0

h2 auto increment and unique

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;
Posted by: Guest on September-19-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language