第一种方法:
create table testA
(
id serial primary key,
name character varying(128)
);
serial 这种类型的变量每次就会自己增加1.
第二种方法:
create table testB
(
id integer primary key,
name character varying(128)
);
然后定义一个sequence来解决这个问题
create sequence toper_test_tid_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
alter table test alter column id set default nextval('toper_test_tid_seq');