xpath/xquery sql - 获取所有值

发布于 2024-12-06 14:21:39 字数 327 浏览 0 评论 0原文

你好,我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

青丝拂面 2024-12-13 14:21:39

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

新雨望断虹 2024-12-13 14:21:39

在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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文