XMLTABLE

Syntax



Description of the illustration xmltable.gif

XMLnamespaces_clause::=



Description of the illustration xml_namespaces_clause.gif

XMLTABLE_options::=



Description of the illustration xmltable_options.gif

XML_passing_clause::=



Description of the illustration xml_passing_clause.gif

XML_table_column::=



Description of the illustration xml_table_column.gif

Purpose

XMLTable maps the result of an XQuery evaluation into relational rows and columns. You can query the result returned by the function as a virtual relational table using SQL.

  • The XMLNAMESPACES clause contains a set of XML namespace declarations. These declarations are referenced by the XQuery expression (the evaluated
    XQuery_string), which computes the row, and by the XPath expression in the
    PATH clause of XML_table_column, which computes the columns for the entire
    XMLTable function. If you want to use qualified names in the PATH expressions of the
    COLUMNS clause, then you need to specify the XMLNAMESPACES clause.

  • XQuery_string is a complete XQuery expression and can include prolog declarations.

  • The expr in the XML_passing_clause is an expression returning an
    XMLType or an instance of a SQL scalar data type that is used as the context for evaluating the XQuery expression. You can specify only one
    expr in the PASSING clause without an identifier. The result of evaluating each
    expr is bound to the corresponding identifier in the
    XQuery_string. If any expr that is not followed by an
    AS clause, then the result of evaluating that expression is used as the context item for evaluating the
    XQuery_string.

  • The optional COLUMNS clause defines the columns of the virtual table to be created by
    XMLTable.

    • If you omit the COLUMNS clause, then XMLTable returns a row with a single
      XMLType pseudocolumn named COLUMN_VALUE.

    • The datatype is required unless
      XMLTable is used with XML schema-based storage of XMLType,
      datatype. In this case, if you omit
      datatype, Oracle XML DB infers the data type from the XML schema. If the database is unable to determine the proper type for a node, then a default type of
      VARCHAR2(4000) is used.

    • FOR ORDINALITY specifies that column is to be a column of generated row numbers. There must be at most one
      FOR ORDINALITY clause. It is created as a NUMBER column.

    • The optional PATH clause specifies that the portion of the XQuery result that is addressed by XQuery expression string is to be used as the column content. If you omit
      PATH, then the XQuery expression column is assumed. For example:

      XMLTable(... COLUMNS xyz
      

      is equivalent to

      XMLTable(... COLUMNS xyz PATH 'XYZ')
      

      You can use different PATH clauses to split the XQuery result into different virtual-table columns.

    • The optional DEFAULT clause specifies the value to use when the
      PATH
      expression results in an empty sequence. Its expr is an XQuery expression that is evaluated to produce the default value.

    • See Also:

      Oracle XML DB Developer's Guide for more information on the
      XMLTable function, including additional examples, and on XQuery in general

    • Examples

      The following example converts the result of applying the XQuery '/Warehouse' to each value in the
      warehouse_spec column of the warehouses table into a virtual relational table with columns
      Water and Rail:

    • SELECT warehouse_name warehouse,
      warehouse2."Water", warehouse2."Rail"
      FROM warehouses,
      XMLTABLE('/Warehouse'
      PASSING warehouses.warehouse_spec
      COLUMNS
      "Water" varchar2(6) PATH '/Warehouse/WaterAccess',
      "Rail" varchar2(6) PATH '/Warehouse/RailAccess')
      warehouse2; WAREHOUSE Water Rail
      ----------------------------------- ------ ------
      Southlake, Texas Y N
      San Francisco Y N
      New Jersey N N
      Seattle, Washington N Y

XMLTABLE的更多相关文章

  1. Oracle XMLTable 使用教程与实例

    从Oracle 10g开始,甲骨文公司新增了XQuery和XMLTable两个功能作为处理XML的武器. XMLQuery一样,您可以使用XQuery语言构造XML数据和查询XML和关系数据.你可以使 ...

  2. Oracle中使用虚拟表DUAL或XMLTABLE返回顺序数列

    在Oracle中使用虚拟表DUAL或XMLTABLE返回顺序数列 使用DUAL表和CONNECT BY LEVEL的特殊用法,返回一个1-10的顺序数列,示例代码如下: SELECT LEVEL FR ...

  3. MS SQL巡检系列——检查重复索引

    前言感想:一时兴起,突然想写一个关于MS SQL的巡检系列方面的文章,因为我觉得这方面的知识分享是有价值,也是非常有意义的.一方面,很多经验不足的人,对于巡检有点茫然,不知道要从哪些方面巡检,另外一方 ...

  4. Oracle数据行拆分多行

    工作和学习中常常会遇到一行要分割成多行数据的情况,在此整理一下做下对比. 单行拆分 如果表数据只有一行,则可以直接在原表上直接使用connect by+正则的方法,比如: select regexp_ ...

  5. Oracle行转列、列转行的Sql语句总结

    多行转字符串 这个比较简单,用||或concat函数可以实现  SQL Code  12    select concat(id,username) str from app_userselect i ...

  6. 45 个非常有用的 Oracle 查询语句

    ​ 这里我们介绍的是 40+ 个非常有用的 Oracle 查询语句,主要涵盖了日期操作,获取服务器信息,获取执行状态,计算数据库大小等等方面的查询.这些是所有 Oracle 开发者都必备的技能,所以快 ...

  7. oracle---日期等plsql

    日期/时间 相关查询 1.获取当前月份的第一天 运行这个命令能快速返回当前月份的第一天.你可以用任何的日期值替换 "SYSDATE"来指定查询的日期. SELECT TRUNC ( ...

  8. 如何查看oracle数据库的所有的关键字

    管理员账户登录后,执行以下命令:  select * from v$reserved_words 附上参考: NOMONITORINGRECORDS_PER_BLOCKCASCADEDYNAMIC_S ...

  9. .net之工作流工程展示及代码分享(三)数据存储引擎

    数据存储引擎是本项目里比较有特色的模块. 特色一,使用接口来对应不同的数据库.数据库可以是Oracle.Sqlserver.MogoDB.甚至是XML文件.采用接口进行对应: public inter ...

随机推荐

  1. bzoj5100 [POI2018]Plan metra 构造

    5100: [POI2018]Plan metra Time Limit: 40 Sec  Memory Limit: 128 MBSec  Special JudgeSubmit: 189  Sol ...

  2. Windows下使用notepad++对文本进行行列转换

    行转列: Ctrl + F  选择替换 查找目标:填写指定的内容 替换为:\r\n 查找模式:正则表达式 单击替换或全部替换按钮 列转行: Ctrl + F  选择替换 查找目标:\r\n 替换为:不 ...

  3. Python中的条件和循环语句

    条件和循环语句 1. 条件语句 if单用 格式:if 条件表达式 例如:if 5 > 3: print('True') >>> 'True' #当条件满足时才会执行上述操作. ...

  4. js打印小结

    <script type="text/javascript"> //打印必备参数 var hkey_root,hkey_path,hkey_key; hkey_root ...

  5. Linux学习之CentOS(十二)----磁盘管理之 认识ext文件系统(转)

    认识ext文件系统 硬盘组成与分割 文件系统特性 Linux 的 EXT2 文件系统(inode) 与目录树的关系 EXT2/EXT3 文件的存取与日志式文件系统的功能 Linux 文件系统的运行 挂 ...

  6. JavaScript正则表达式模式匹配(4)——使用exec返回数组、捕获性分组和非捕获性分组、嵌套分组

    使用exec返回数组 var pattern=/^[a-z]+\s[0-9]{4}$/; var str='google 2012'; alert(pattern.exec(str)); //返回一个 ...

  7. R语言do.call 函数用法详解

    虽然R语言有类型很丰富的数据结构,但是很多时候数据结构比较复杂,那么基本就会用到list这种结构的数据类型.但是list对象很难以文本的形式导出,因此需要一个函数能快速将复杂的list结构扁平化成da ...

  8. git清空某个文件的历史版本

    比如你要清空文件private.ini git filter-branch --force --index-filter 'git rm --cached --ignore-unmatch priva ...

  9. linux TCP数据包封装在SKB的过程分析

    在linux中 tcp的数据包的封装是在函数tcp_sendmsg开始的,在函数tcp_sendmsg中用到skb = sk_stream_alloc_skb(sk, select_size(sk, ...

  10. Android开发技巧——定制仿微信图片裁剪控件

    拍照--裁剪,或者是选择图片--裁剪,是我们设置头像或上传图片时经常需要的一组操作.上篇讲了Camera的使用,这篇讲一下我对图片裁剪的实现. 背景 下面的需求都来自产品. 裁剪图片要像微信那样,拖动 ...