xpath/xquery sql - 获取所有值
你好,我有一个 xml blob..
<string>1</string>
<string>2</string>
<string>3</string>
<string>4</string>
<string>11</string>
<string>1211</string>
<string>12331</string>
我如何在 SQL 中使用 xpath/xquery 获取所有值
谢谢
Hi I have a blob of xml..
<string>1</string>
<string>2</string>
<string>3</string>
<string>4</string>
<string>11</string>
<string>1211</string>
<string>12331</string>
how would I get all the values using xpath/xquery in SQL
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
xpath
//string
将返回整个 xml 中的所有值,xpath/string
将仅返回根节点中的值。要在 sql 中使用它,请查看这篇文章 XPath to fetch SQL XML value
The xpath
//string
will return all the values in the intire xml the xpath/string
will return only the values in the root node.And for using it in sql look at this post XPath to fetch SQL XML value
在oracle数据库中,
您有
XMLType
(请参阅此)数据类型..通过此数据类型,您可以获得所有值..
所有示例本身都在那里,请浏览该网站。
in oracle database
you have
XMLType
(see this) data type..by this datatype you can get all the value..
all the examples are there itself, please go through that site.