我在MySQL中使用XML,我需要从更大的XML文档中提取一个节点,其中包含属性和子元素。完整的XML是这样的:
<parent>
<child
attrOne="1"
attrTwo="two">
<grandchild
attrThree="3"
attrFour="four"
/>
</child>
</parent>
我想要获得的是:
<child
attrOne="1"
attrTwo="two">
<grandchild
attrThree="3"
attrFour="four"
/>
</child>
有没有直接的方法来实现这一目标?我知道ExtractValue()
,但是它应该只获取节点的值,而不是节点本身。