3

我有一个包含 XMLType 字段的表。该表是使用以下 DDL/DML 创建和加载的:

CREATE TABLE T_ECO_test_LOG
(
  SECID             NUMBER                      NOT NULL,
  LOG_ATTRIBUTES    SYS.XMLTYPE
)

INSERT INTO t_eco_test_log VALUES 
   (       1, XMLType(
              '<attributes>
  <attribute>
    <name>remoteAddress</name>
    <value>180.201.106.130</value>
  </attribute>
  <attribute>
    <name>domain</name>
    <value>BSI_US</value>
  </attribute>
</attributes>'));

INSERT INTO t_eco_test_log VALUES 
   (       2, XMLType(
              '<attributes>
  <attribute>
    <name>user</name>
    <value>xxxx</value>
  </attribute>
  <attribute>
    <name>domain</name>
    <value>BSI_US</value>
  </attribute>
</attributes>'));        

我想逐行获取/attributes/attribute/name 中的不同值;所以有了数据 O 想得到:

remoteAddress
domain
user

到目前为止,我已经尝试了以下查询:

select extractValue(value(x),'/attributes/attribute/name') 
  from t_eco_log,
        table(xmlsequence(extract(log_attributes,'/attributes')) )x

但我收到以下消息:

ORA-19025: EXTRACTVALUE 仅返回一个节点的值

如果我使用

select extract(value(x),'/attributes/attribute/name') 
  from t_eco_log,
        table(xmlsequence(extract(log_attributes,'/attributes')) )x

我得到了一个 XML 结果,其中包含:

<name>remoteAddress</name><name>domain</name>

但我想将它们作为行,我该怎么做?

TIA

4

2 回答 2

2

就像是 :

with x1 as (select xmltype('<attributes>
  <attribute>
    <name>remoteAddress</name>
    <value>180.201.106.130</value>
  </attribute>
  <attribute>
    <name>domain</name>
    <value>BSI_US</value>
  </attribute>
</attributes>') x2 from dual)
select extract(value(x3),'/attribute/name') 
  from x1,
        table(xmlsequence(extract(x2,'/attributes/*')) ) x3

如果您提供 CREATE TABLE 和 INSERT,则更容易给出精确的 SQL

于 2010-11-07T22:24:35.663 回答
0

我得到了它。根据加里所说的:

with x1 as (select log_attributes x2 from t_eco_test_log)
select distinct(extractValue(value(x3),'/attribute/name')) 
  from x1,
        table(xmlsequence(extract(x2,'/attributes/*')) ) x3

谢谢!

于 2010-11-07T23:57:43.220 回答