码迷,mamicode.com
首页 > 数据库 > 详细

SAPHANA学习(24):SQL Function(X)

时间:2020-11-07 17:09:45      阅读:26      评论:0      收藏:0      [点我收藏+]

标签:path   nali   str   xpath   fun   color   ali   sel   pass   

153. XMLEXTRACT

XMLEXTRACT(<XML_document>, <XPath_query> [,<NamespaceDeclarations>])

<XML_document>

Specifies an XML document of type CLOB, NCLOB, VARCHAR, or NVARCHAR.

<XPath_query>

Specifies an XPath expression of type VARCHAR or NVARCHAR.

<NamespaceDeclarations>

Specifies a namespace declaration of type VARCHAR or NVARCHAR.

 

XMLEXTRACTVALUE(<XML_document>, <XPath_query> [,<NamespaceDeclarations>])

 

XMLTABLE( [ <XML_namespace_clause>, ]

  <row_pattern> PASSING <XML_argument> COLUMNS <column_definitions>

  <error_option>

 )

创建关系表根据XML字符串

XMLNAMESPACE (<XML_namespace>[, ...]

  [DEFAULT <default_namespace>]

<XML_namespace> ::= <namespace_url> AS <namespace_alias>

<row_pattern> ::= <str_const>

Describes the format of the xmlNodes in the XML with an XPath expression.

<XML_argument> ::= <str_const>| <column_ref>

 

<column_definitions> ::= <column_name> <column_type> [, <column_name> <column_type>,...]

<column_name> ::= <identifier>

<column_type> ::= FOR ORDINALITY

  | <regular_column_return_type> PATH <column_pattern> [DEFAULT <str_const>]

  | <formatted_column_return_type> FORMAT XML PATH <column_pattern> [DEFAULT <str_const>]

<column_pattern> ::= <str_const>

Specifies the xPath Expression to use to extract the value for a column.

<formatted_column_return_type> ::= VARCHAR (<int_const>)| NVARCHAR (<int_const>)

*/

--不存在?

SELECT XMLEXTRACT(
    <doc><item><id>1</id><name>Box</name></item><item><id>2</id><name>Jar</name></item></doc>,  
    /doc/item[2]/name
 ) FROM DUMMY;

SELECT XMLEXTRACT(                        
    <doc xmlns:ns1="http://namespace1.sap.com" xmlns:ns2="http:// namespace2.sap.com">
    <ns1:item><ns1:id>1</ns1:id><ns1:name>Box</ns1:name></ns1:item>     
    <ns1:item><ns1:id>2</ns1:id><ns1:name>Jar</ns1:name></ns1:item>     
    <ns2:item><ns2:id>3</ns2:id><ns2:name>Table</ns2:name></ns2:item></doc>,  
    /doc/ns1:item[2]/ns1:name,  
    xmlns:ns1="http://namespace1.sap.com" xmlns:ns2="http://namespace2.sap.com"
 ) FROM DUMMY;

--出错!
SELECT * FROM
 XMLTABLE(/doc/item
 PASSING <doc><item><id>10</id><name>Box</name></item><item><id>20</id><name>Jar</name></item></doc>
 COLUMNS ID INT PATH id,
 NAME VARCHAR(20) PATH name ) AS XTABLE;

 

SAPHANA学习(24):SQL Function(X)

标签:path   nali   str   xpath   fun   color   ali   sel   pass   

原文地址:https://www.cnblogs.com/tangToms/p/13939798.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!