0

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

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

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

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

我试过这样做,但没有奏效:

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

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

有任何想法吗?提前致谢。

4

2 回答 2

1

where您可以在 XPath 谓词中应用约束,而不是:

@xml.query('/root/section[code/@val=5]') 
于 2013-07-26T22:04:07.983 回答
1

您可以使用此查询:

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
于 2013-07-27T10:53:38.380 回答