PostgreSQL:表繼承

Ryan_Bai發表於2020-12-14

使用 INHERITS 建立的新表會繼承一個或多個父表,子表只會繼承父表的表結構和 NOT NULL,DEFAULT,CHECK 三種約束,主鍵,外來鍵和唯一鍵以及索引不會被繼承,所以修改父表的結構(增刪欄位),NOT NULL,DEFAULT 和 CHECK 約束會自動同步子表修改。

示例

建立父表,用於測試

create table tbl_inherits_parent(
    a int not null,
    b varchar(32) not null default 'Got u',
    c int check (c > 0),
    d date not null
);

示例一

建立繼承表,檢視索引繼承

test=# alter table tbl_inherits_parent add constraint pk_tbl_inherits_parent_a primary key(a);
ALTER TABLE
 
test=# alter table tbl_inherits_parent add constraint uk_tbl_inherits_parent_b_d unique (b,d);
ALTER TABLE
 
test=# create table tbl_inherits_partition() inherits (tbl_inherits_parent);
CREATE TABLE
 
test=# \d tbl_inherits_partition 
                    Table "public.tbl_inherits_partition"
 Column |         Type          |                  Modifiers                  
--------+-----------------------+---------------------------------------------
 a      | integer               | not null
 b      | character varying(32) | not null default 'Got u'::character varying
 c      | integer               | 
 d      | date                  | not null
Check constraints:
    "tbl_inherits_parent_c_check" CHECK (c > 0)
Inherits: tbl_inherits_parent

示例二

檢視列屬性繼承

test=# alter table tbl_inherits_parent add column e int not null default 0;
ALTER TABLE
 
test=# alter table tbl_inherits_parent alter column b set default 'try me';
ALTER TABLE
 
test=# \d tbl_inherits_partition 
                     Table "public.tbl_inherits_partition"
 Column |         Type          |                  Modifiers                   
--------+-----------------------+----------------------------------------------
 a      | integer               | not null
 b      | character varying(32) | not null default 'try me'::character varying
 c      | integer               | 
 d      | date                  | not null
 e      | integer               | not null default 0
Check constraints:
    "tbl_inherits_parent_c_check" CHECK (c > 0)
Inherits: tbl_inherits_parent

示例三

除繼承父表之外,建立子表時可以增加自己的欄位

test=# create table tbl_inherits_partition1(f int) inherits (tbl_inherits_parent);
CREATE TABLE
 
test=# \d tbl_inherits_partition1 
                    Table "public.tbl_inherits_partition1"
 Column |         Type          |                  Modifiers                   
--------+-----------------------+----------------------------------------------
 a      | integer               | not null
 b      | character varying(32) | not null default 'try me'::character varying
 c      | integer               | 
 d      | date                  | not null
 e      | integer               | not null default 0
 f      | integer               | 
Check constraints:
    "tbl_inherits_parent_c_check" CHECK (c > 0)
Inherits: tbl_inherits_parent

示例四

解除繼承

test=# alter table tbl_inherits_partition1 no inherit tbl_inherits_parent;
ALTER TABLE
 
test=# \d tbl_inherits_partition1 
                    Table "public.tbl_inherits_partition1"
 Column |         Type          |                  Modifiers                   
--------+-----------------------+----------------------------------------------
 a      | integer               | not null
 b      | character varying(32) | not null default 'try me'::character varying
 c      | integer               | 
 d      | date                  | not null
 e      | integer               | not null default 0
 f      | integer               | 
Check constraints:
    "tbl_inherits_parent_c_check" CHECK (c > 0)


轉載:https://www.cnblogs.com/alianbog/p/5605129.html

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31490526/viewspace-2742055/,如需轉載,請註明出處,否則將追究法律責任。

相關文章