create table parent(...);
create table child1(...)
inherits parent;
create table child2(...)
inherits parent;
create table child3(...)
inherits parent;
我想为“父”创建一个触发器,当我在 child1 或 child2 或 child3 上插入时,此触发器必须自动执行。但似乎没有用,我必须为每个孩子创建一个触发器。postgresql 9 的任何解决方案?