如何使用 sql server 在 XML 文档中获取包含具有给定

How do you get a node that contains a child node with a given attribute value in an XML document using sql server?(如何使用 sql server 在 XML 文档中获取包含具有给定属性值的子节点的节点?)
本文介绍了如何使用 sql server 在 XML 文档中获取包含具有给定属性值的子节点的节点?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 SQL Server 2008 解析 XML 文档.我是一个完整的菜鸟,我想知道我是否可以从你们那里得到帮助.

I'm working on parsing XML documents using SQL Server 2008. I'm a complete noob and I was wondering if I can get help from you guys.

我有一个像下面这样的 XML 文档,我想获取代码"节点具有 val=5 的部分"节点.

I have an XML document like the one below and I want to get the "section" node where the "code" node has val=5.

<root>
  <section>
    <code val=6 />
    ...
  </section>
  <section>
    <code val=5 />
    ...
  </section>
  <section>
    <code val=4 />
    ...
  </section>
</root>

所以结果应该是:<代码><节><代码val=5/>...</section>

我试过这样做,但没有用:

I tried doing this, but it didn't work:

select @xml.query('/root/section')其中@xml.value('/root/section/code/@val,'int')='5'

我也试过这个:select @xml.query('/root/section')其中@xml.exist('/root[1]/section[1]/code[@val="1"])='1'

有什么想法吗?提前致谢.

Any ideas? Thanks in advance.

推荐答案

你可以使用这个查询:

DECLARE @x XML=N'
<root>
  <section atr="A">
    <code val="5" />
  </section>
  <section atr="B">
    <code val="6" />
  </section>
  <section atr="C">
    <code val="5" />
  </section>
</root>';

SELECT  a.b.query('.') AS SectionAsXmlElement,
        a.b.value('@atr','NVARCHAR(50)') AS SectionAtr
FROM    @x.nodes('/root/section[code/@val="5"]') a(b);

结果:

SectionAsXmlElement                         SectionAtr
------------------------------------------- ----------
<section atr="A"><code val="5" /></section> A
<section atr="C"><code val="5" /></section> C

这篇关于如何使用 sql server 在 XML 文档中获取包含具有给定属性值的子节点的节点?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
How can I generate an entity–relationship (ER) diagram of a database using Microsoft SQL Server Management Studio?(如何使用Microsoft SQL Server Management Studio生成数据库的实体关系(ER)图?)