當(dāng)前位置:首頁 >  站長 >  數(shù)據(jù)庫 >  正文

PostgreSQL 自增語法的用法說明

 2021-04-27 17:02  來源: 腳本之家   我來投稿 撤稿糾錯

  域名預(yù)訂/競價,好“米”不錯過

mysql使用auto_increment的語法實現(xiàn)表字段自增。

在PostgreSQL中,具有數(shù)據(jù)類型為smallserial,serial,bigserial的字段具有自增特性。

create table company(
 id serial primary key,
 name text not null,
 age int not null,
 address char(50),
 salary real
);

 

則在插入該表的時候,可以不插入id列,數(shù)據(jù)庫系統(tǒng)會自動填充。

1insert into company(name,age,address,salary) values('huangbaokang',29,'ganzhou',100000);

補(bǔ)充:[Postgresql] 設(shè)置主鍵為自增長類型

使用SERIAL關(guān)鍵字:

1create table t(t_id SERIAL primary key,c1 text,c2 text,c3 text,c4 text);

導(dǎo)入數(shù)據(jù)時可不指定t_id字段,數(shù)據(jù)庫會自動從1開始增長,默認(rèn)為整型

文章來源:腳本之家

來源地址:https://www.jb51.net/article/205247.htm

申請創(chuàng)業(yè)報道,分享創(chuàng)業(yè)好點子。點擊此處,共同探討創(chuàng)業(yè)新機(jī)遇!

相關(guān)文章

熱門排行

信息推薦