如何使用 sql server 在 XML 文档中获取包含具有给定属性值的子节点的节点?

2021-10-02 00:00:00 xml xpath xquery sql-server

我正在使用 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

相关文章