postgres数据库设置id自增

postgres数据库设置id自增

1. 使用SQL语句建立自增序列

CREATE SEQUENCE id_seq START 1;

执行结果

postgres数据库设置id自增_第1张图片
ng)

2. 在设计表中使用该序列

nextval('id_seq'::regclass)

postgres数据库设置id自增_第2张图片

你可能感兴趣的:(linux学习,数据库,oracle)