我正在使用SQL Server 2008解析XML文档。我是一个完整的菜鸟,我想知道我是否能得到你们的帮助。
我有一个类似下面的XML文档,我希望得到“section”节点,其中“code”节点的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'
有什么想法吗?提前谢谢。
答案 0 :(得分:1)
您可以在XPath谓词中应用约束而不是where
:
@xml.query('/root/section[code/@val=5]')
答案 1 :(得分: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