mysql : is serial
创建一个test表: create table test(id serial);
mysql> desc test;
serial 相当于 id bigint primary key not null auto_increment;