如何获取sql server中xml数据中元素出现的次数

发布于 2024-11-25 01:46:49 字数 291 浏览 2 评论 0原文

在我的 xml 中,我想获取元素出现的次数,我该如何做到这一点。

例如,在下面的 xml 中,我想要电话元素出现的次数,

<Person>
 <Name>abc</Name>
 <Phone>1234</Phone>
 <Phone>9876</Phone>
 <Phone>5678</Phone>
</Person>

我怎样才能实现这一目标?有人可以帮助我吗?

In my xml i want to get the number of occurances of an element how can i do this.

for example in the below xml i want the number of times phone element is occuring

<Person>
 <Name>abc</Name>
 <Phone>1234</Phone>
 <Phone>9876</Phone>
 <Phone>5678</Phone>
</Person>

How can i achieve this ? Can someone help me .

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

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

发布评论

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

评论(2

柠檬色的秋千 2024-12-02 01:46:49
declare @xml xml='<Person>
 <Name>abc</Name>
 <Phone>1234</Phone>
 <Phone>9876</Phone>
 <Phone>5678</Phone>
</Person>'

select @xml.value('count(//Person/Phone)','int')
declare @xml xml='<Person>
 <Name>abc</Name>
 <Phone>1234</Phone>
 <Phone>9876</Phone>
 <Phone>5678</Phone>
</Person>'

select @xml.value('count(//Person/Phone)','int')
℡Ms空城旧梦 2024-12-02 01:46:49

您使用 XPATH。该站点有几个示例,说明如何按名称挑选特定类型的节点。 http://www.mycodeshare.com/item/1000000009/ mssql-xml-query-using-xquery/

从这里开始,如果不够清楚,请进行评论。

You use XPATH. This site has a couple of examples of how to single out a specific type of node, by name. http://www.mycodeshare.com/item/1000000009/mssql-xml-query-using-xquery/

Start there and comment if it is not quite clear enough.

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