Is there a way to have an auto_incrementing BIGINT ID for a table. It can be defined like so
id bigint auto_increment
but that has no effec
It works for me. JDBC URL: jdbc:h2:~/temp/test2
jdbc:h2:~/temp/test2
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;
result:
ID NAME 1 hello 2 world