继承只在一个方向发生,即从超级表到子表。子表的属性将不被超级表继承。系统目录信息的这节列出继承的数据库对象,在系统目录中没有关于这些子表的信息。
create row type rowtype1 (...); create row type rowtype2 (...) under rowtype1; create table tab1 of type rowtype1; create table tab2 of type rowtype2 under tab1; create table tab3 of type rowtype2 under tab1; -- This is not valid.