MySQL:从XML文档中提取完整节点

时间:2016-12-14 19:56:39

标签: mysql xml xpath mysql-5.7

我在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(),但是它应该只获取节点的值,而不是节点本身。

0 个答案:

没有答案