使用通配符通过 Xquery 检索第一个值
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过链接 Xquery
.query()
和.value()
找到了答案,这返回第一个节点的值,并且非常适合我的需求。
I found the answer by chaining Xquery
.query()
and.value()
This returns the value of the first node and works perfectly for my needs.