postgresql怎么设置主键[postgresql教程]
在使用postgresql数据库,已经创建表之后,设置主键自增直接运行如下sql语句:
student是我的表名;
id是我设置的主键;
start with 设置初始值;
increment by 设置每次增加值;
CREATE SEQUENCE student_id_seqSTART WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
alter table student alter column id set default nextval('student_id_seq');
推荐学习《Python教程》。
以上是 postgresql怎么设置主键[postgresql教程] 的全部内容, 来源链接: utcz.com/z/526535.html