postgreSQL |表繼承

 建立父表sql

create table public.tb_parent(
id serial not null,
name text not null,
primary key(id)
);

 建立子表code

create table tb_child_0(
)
inherits (tb_parent);

一、父表數據同步

二、子表數據it

三、往子表插入數據table

四、結果:父表中會出現子表的記錄,若是修改子表記錄,則會同步到父表class

相關文章
相關標籤/搜索