postgresql 主键递增

前端之家收集整理的这篇文章主要介绍了postgresql 主键递增前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

第一种方法:

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');

猜你在找的Postgre SQL相关文章