我有我创建的这种类型:
create type baseType as Object(...) NOT Instantiable not Final
我想为某些字段添加约束。问题是这种类型,not instantiable
因此,我无法为其字段添加约束。那么,当我创建我的继承类型时
create type childType1 under baseType (...)
create type childType2 under baseType (...)
我必须为所有子表添加约束。这是正确的方法吗?我认为有一种方法可以仅在父类型中添加对公共字段的约束。有没有办法做到这一点?