在postgresql中設(shè)置主鍵序列的方法:1.啟動(dòng)postgresql服務(wù);2.登錄postgresql數(shù)據(jù)庫;3.使用數(shù)據(jù)庫;4.在數(shù)據(jù)庫新建表;使用alter命令添加主鍵;6.執(zhí)行命令為主鍵創(chuàng)建序列;
具體步驟如下:
1.首先,在命令行中啟動(dòng)postgresql服務(wù);
net start postgresql
2.postgresql服務(wù)啟動(dòng)后,在命令行中登錄到postgresql數(shù)據(jù)庫;
psql -h -U
3.登錄到postgresql數(shù)據(jù)庫后,在postgresql選擇一個(gè)數(shù)據(jù)庫并使用;
\c text
4.進(jìn)入到數(shù)據(jù)庫后,在數(shù)據(jù)庫中新建一個(gè)數(shù)據(jù)表;
create table text;
5.數(shù)據(jù)表新建好后,在表中使用alter命令添加一個(gè)主鍵;
alter table goods add primary key(sid);
6.最后,主鍵添加好后,執(zhí)行以下命令即可為主鍵創(chuàng)建序列;
CREATE SEQUENCE public.table_user_id_seq
INCREMENT 1START 1
MINVALUE 1
MAXVALUE 9223372036854775807
CACHE 1;