使用通配符通过 Xquery 检索第一个值

发布于 2024-08-06 23:23:32 字数 312 浏览 4 评论 0原文

在 SQL Server 2008 中未分配架构的 XmlData 列中,如何提取特定节点级别的第一项?例如,我有:

SELECT 
XmlData.value('//*/*[1]','NVARCHAR(6)')
FROM table
where XmlData.Exist('//*/*[1]') = 1

我假设这不起作用,因为如果第二层有多个具有不同名称的节点,则可以返回每个节点中的第一个(并且 value() 要求选择一个单例。 由于我不知道任何节点的名称是什么,有没有办法始终选择第二级第一个节点的名称?

In an XmlData column in SQL Server 2008 that has no schema assigned to it, how can I pull the first item at a particular node level? For example, I have:

SELECT 
XmlData.value('//*/*[1]','NVARCHAR(6)')
FROM table
where XmlData.Exist('//*/*[1]') = 1

I assume this does not work because if there are multiple nodes with different names at the 2nd level, the first of each of those could be returned (and the value() requires that a singleton be selected.
Since I don't know what the names of any nodes will be, is there a way to always select whatever the first node is at the 2nd level?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

別甾虛僞 2024-08-13 23:23:32

我通过链接 Xquery .query().value() 找到了答案,

XMLDATA.query('//*/*[1]').value('.[1]','NVARCHAR(6)')

这返回第一个节点的值,并且非常适合我的需求。

I found the answer by chaining Xquery .query() and .value()

XMLDATA.query('//*/*[1]').value('.[1]','NVARCHAR(6)')

This returns the value of the first node and works perfectly for my needs.

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