<category field="height">
<num>185</num>
</category>
<category field="weight">
<num>90</num>
</category>
我需要从标签中获取价值 num
仅从标签 category
,其中属性 field
等于 weight
.
注: field="height"
xml中可能缺少。
3条答案
按热度按时间zsohkypk1#
选择
num
父元素category
的field
属性为"weight"
:c0vxltue2#
试试这个:
就是这样
pn9klfpd3#
找到解决方案:
SELECT ExtractValue(xml, '//category/num[../@field="weight"]');