在 SQL Object table 中的 subtype-specific 属性上创建索引

Creating index on subtype-specific attribute in a SQL Object table

我创建了 object 类型 'Document' 的 table。此 table 包含多个 sub-types 文档(例如:食谱、出版物、合同)。这些 sub-types 都包含通用属性(id、标题、文件大小),但通常包含其他属性(即库存编号)。我在常用搜索的公共属性上创建了索引,但也想在常用搜索的 sub-type 个特定属性上创建索引。

例如,我为文档的标题创建了一个索引table:

CREATE INDEX i_title
ON Documents (Title);

我想做类似下面的事情:

CREATE INDEX i_stock_number
ON DOCUMENTS d (Stock_Number) WHERE VALUE(d) IS OF TYPE(Publication);

或者可能

CREATE INDEX i_stock_number
ON DOCUMENTS (TREAT(DOCUMENTS AS Publication).Stock_Number);

你能帮我确定如何为 sub-type 个特定属性创建索引吗?

感谢您的宝贵时间。

create index i_stock_number
on documents d
(treat(value(d) as publication).stock_number);

假设数据模型如下:

create or replace type document is object
(
    id number,
    title varchar2(100),
    file_size number
) not final;

create or replace type publication under document
(
    stock_number number
);

create table documents of document;

insert into documents values(publication(1, 'title', 100, 200));
commit;