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
You can also use default:
default
create table if not exists my(id int auto_increment primary key,s text); insert into my values(default,'foo');