XMLTABLE
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 ofXML_table_column
, which computes the columns for the entire
XMLTable
function. If you want to use qualified names in thePATH
expressions of the
COLUMNS
clause, then you need to specify theXMLNAMESPACES
clause.XQuery_string
is a complete XQuery expression and can include prolog declarations.The
expr
in theXML_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 thePASSING
clause without an identifier. The result of evaluating each
expr
is bound to the corresponding identifier in the
XQuery_string
. If anyexpr
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, thenXMLTable
returns a row with a single
XMLType
pseudocolumn namedCOLUMN_VALUE
.The
datatype
is required unless
XMLTable
is used with XML schema-based storage ofXMLType
,
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 aNUMBER
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 expressioncolumn
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
expression results in an empty sequence. Its
PATHexpr
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 generalExamples
The following example converts the result of applying the XQuery
'/Warehouse'
to each value in the
warehouse_spec
column of thewarehouses
table into a virtual relational table with columns
Water
andRail
: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的更多相关文章
- Oracle XMLTable 使用教程与实例
从Oracle 10g开始,甲骨文公司新增了XQuery和XMLTable两个功能作为处理XML的武器. XMLQuery一样,您可以使用XQuery语言构造XML数据和查询XML和关系数据.你可以使 ...
- Oracle中使用虚拟表DUAL或XMLTABLE返回顺序数列
在Oracle中使用虚拟表DUAL或XMLTABLE返回顺序数列 使用DUAL表和CONNECT BY LEVEL的特殊用法,返回一个1-10的顺序数列,示例代码如下: SELECT LEVEL FR ...
- MS SQL巡检系列——检查重复索引
前言感想:一时兴起,突然想写一个关于MS SQL的巡检系列方面的文章,因为我觉得这方面的知识分享是有价值,也是非常有意义的.一方面,很多经验不足的人,对于巡检有点茫然,不知道要从哪些方面巡检,另外一方 ...
- Oracle数据行拆分多行
工作和学习中常常会遇到一行要分割成多行数据的情况,在此整理一下做下对比. 单行拆分 如果表数据只有一行,则可以直接在原表上直接使用connect by+正则的方法,比如: select regexp_ ...
- Oracle行转列、列转行的Sql语句总结
多行转字符串 这个比较简单,用||或concat函数可以实现 SQL Code 12 select concat(id,username) str from app_userselect i ...
- 45 个非常有用的 Oracle 查询语句
这里我们介绍的是 40+ 个非常有用的 Oracle 查询语句,主要涵盖了日期操作,获取服务器信息,获取执行状态,计算数据库大小等等方面的查询.这些是所有 Oracle 开发者都必备的技能,所以快 ...
- oracle---日期等plsql
日期/时间 相关查询 1.获取当前月份的第一天 运行这个命令能快速返回当前月份的第一天.你可以用任何的日期值替换 "SYSDATE"来指定查询的日期. SELECT TRUNC ( ...
- 如何查看oracle数据库的所有的关键字
管理员账户登录后,执行以下命令: select * from v$reserved_words 附上参考: NOMONITORINGRECORDS_PER_BLOCKCASCADEDYNAMIC_S ...
- .net之工作流工程展示及代码分享(三)数据存储引擎
数据存储引擎是本项目里比较有特色的模块. 特色一,使用接口来对应不同的数据库.数据库可以是Oracle.Sqlserver.MogoDB.甚至是XML文件.采用接口进行对应: public inter ...
随机推荐
- [BZOJ]1005 明明的烦恼(HNOI2008)
BZOJ的第一页果然还是很多裸题啊,小C陆续划水屯些板子. Description 自从明明学了树的结构,就对奇怪的树产生了兴趣......给出标号为1到N的点,以及某些点最终的度数,允许在任意两点间 ...
- ScalaPB(0): 找寻合适的内部系统微服务集成工具
前一段时间我们探讨了SDP的一个基于集群的综合数据平台解决方案,由多种数据库组成,包括:JDBC, Cassandra 及MongoDB.其中Cassandra和MongoDB属于分布式数据库,可以在 ...
- urllib,request 设置代理
通常防止爬虫被反主要有以下几个策略: 1.动态设置User-Agent(随机切换User-Agent,模拟不同用户的浏览器信息) 2.使用IP地址池:VPN和代理IP,现在大部分网站都是根据IP来b ...
- ios html5 audio 不能自动播放
//修复ios 浏览器不能自动播放音频的问题 在加载时创建新的audio 用的时候更换src即可 Xut.fix = Xut.fix||{}; if (Xut.plat.isBrowser & ...
- css文本强制一行 字间距
white-space:nowrap 在一行 .slideLastlyNews img{margin-left:9px;margin-right:5px;margin-top:6px;width:5p ...
- fastDFS 安装 配置 使用
fastDFS 安装 配置 使用 关于安装 本文采用的是源码的安装方式,其他安装方式请自行百度 简单介绍 1.背景 FastDFS是一款开源的.分布式文件系统(Distributed File Sys ...
- 游戏流程&游戏规则
- 关于熊猫认证软件IOS安装步骤教程(适用于其他软件)
IOS运行企业版应用教程 1.扫描二维码之后微信进入界面,如下图所示:点击右上角三个点 2.弹出分享界面,如图所示:点击苹果自带浏览器(sarfari) 3.进入苹果自带浏览器后如图所示, ...
- 原生JS实现圆周运动
<body> <div id="ball" style="width:20px; height:20px; background:red; border ...
- Python3 数字(Number)
Python 解释器可以作为一个简单的计算器:您可以在解释器里输入一个表达式,它将输出表达式的值. 表达式的语法很直白: +, -, * 和/ 和在许多其它语言(如Pascal或C)里一样:括号可以用 ...