当前位置:Gxlcms > 数据库问题 > PostgreSQL 自增主键

PostgreSQL 自增主键

时间:2021-07-01 10:21:17 帮助过:35人阅读

table test_no( id SERIAL primary key, name varchar(20) );

二、创建序列

CREATE SEQUENCE test_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1;

应用:

  测试:

    

select nextval(test_seq);

 

PostgreSQL 自增主键

标签:sql   postgre   nbsp   自增   create   style   lock   span   arch   

人气教程排行