创建父表
create table public.tb_parent( id serial not null,name text not null,primary key(id) );
创建子表
create table tb_child_0( ) inherits (tb_parent);
1、父表数据
2、子表数据
3、往子表插入数据
4、结果:父表中会出现子表的记录,如果修改子表记录,则会同步到父表
原文链接:https://www.f2er.com/postgresql/193854.html