我创建了以下测试用例来演示我的问题:
create table test_table (idx number, a varchar2(20), b varchar2(20));
insert into test_table values (1, 'item1', 'value1');
insert into test_table values (2, 'item2', 'value2');
select appendChildXML(
xmltype('<inventory></inventory>'),
'/inventory',
xmlagg(
xmlelement("id", xmlattributes(tt.idx as "val"),
xmlelement("listing",
xmlelement("item",tt.a),
xmlelement("value",tt.b)
)))) as xml
from test_table tt
;
这给出了所需的输出:
<inventory>
<id val="1">
<listing>
<item>item1</item>
<value>value1</value>
</listing>
</id>
<id val="2">
<listing>
<item>item2</item>
<value>value2</value>
</listing>
</id>
</inventory>
但是,如果我尝试使用XMLQuery,我会收到错误。
select XMLQuery(
(
'copy $tmp := . modify insert node '
|| xmlagg(
xmlelement("id", xmlattributes(tt.idx as "val"),
xmlelement("listing",
xmlelement("item",tt.a),
xmlelement("value",tt.b)
)))
|| ' as last into $tmp/inventory return $tmp'
)
PASSING xmltype('<inventory></inventory>') RETURNING CONTENT
) as xml
from test_table tt
;
错误:
ORA-19112: error raised during evaluation:
XVM-01003: [XPST0003] Syntax error at 'id'
1 copy $tmp := . modify insert node <id val="1"><listing><item>item1</item><v
- ^
19112. 00000 - "error raised during evaluation: %s"
*Cause: The error function was called during evaluation of the XQuery expression.
*Action: Check the detailed error message for the possible causes.
我认为问题与我插入多个id节点的事实有关,因为如果我在表中只有一个节点,它会起作用,但我不明白为什么appendChildXML会起作用而XMLQuery不会。
我猜我可能需要使用FLWOR表达式,但我无法创建一个有效的表达式。
我目前正在使用Oracle 11g,并将转向12c(尝试转移到XMLQuery,因为在12c中不推荐使用appendChildXML)。我在Oracle中没有使用XML的经验,也没有以前的XMLQuery经验。
有人可以提供有关如何使XMLQuery工作的建议吗?谢谢!
答案 0 :(得分:0)
您可以使用ora:view函数查询表,然后使用FLWOR表达式生成XML,如下所示:
10/12/2015 19:53:25:SQL> SELECT XMLQuery('<inventory>
2 {for $i in ora:view("TEST_TABLE")
3 let $idval := $i/ROW/IDX,
4 $item := $i/ROW/A/text(),
5 $value := $i/ROW/B/text()
6 return <id val="{$idval}">
7 <listing>
8 <item>{$item}</item>
9 <value>{$value}</value>
10 </listing>
11 </id>}
12 </inventory>'
13 RETURNING CONTENT) AS test_xml
14 FROM DUAL;
TEST_XML
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
<inventory><id val="1"><listing><item>item1</item><value>value1</value></listing></id><id val="2"><listing><item>item2</item><value>value2</value></listing></id></inventory>
答案 1 :(得分:0)
我能够通过下面的查询得到我需要的结果。感谢Francisco Sitja的回答和FLWOR表达,引导我走向完整的答案。
select XMLQuery(
(
'copy $tmp := . modify insert node '
|| 'for $i in ora:view("TEST_TABLE")
let $idval := $i/ROW/IDX,
$item := $i/ROW/A/text(),
$value := $i/ROW/B/text()
return <id val="{$idval}">
<listing>
<item>{$item}</item>
<value>{$value}</value>
</listing>
</id>'
|| ' as last into $tmp/inventory return $tmp'
)
PASSING xmltype('<inventory></inventory>') RETURNING CONTENT
) as xml
from dual;