説明
XMLCONCAT は、一連の XMLType インスタンスを入力として受け取り、各行の要素列を結合して、結合後の XMLType シーケンスを返します。
構文
XMLCONCAT (XMLType_instance [, XMLType_instance ]...)
パラメータの説明
フィールド |
説明 |
|---|---|
| XMLType_instance | 1つまたは複数のXMLインスタンス。 |
戻り値の型
XMLType の結合後のシーケンス。
例
# 二つのXMLTypeインスタンスを結合する
obclient> select XMLCONCAT(xmltype('<testinfo a="0"> <e1>111</e1> </testinfo>'), xmltype('<testinfo a="1"> <e1>111</e1> </testinfo>')) from dual;
<testinfo a="0"> <e1>111</e1> </testinfo><testinfo a="1"> <e1>111</e1> </testinfo>