MYSQL解析XML数据

解析MYSQL数据库中的xml数据

本次分享是解析数据库中的xml文件,获取节点的属性及值:

  • 准备xml数据
  • 解析xml节点属性及值

准备XML数据



<root> 
  <meta name="description">我在做测试meta>  
  <element name="节点1"> 
    <child name="子节点1">子节点1值child> 
  element>  
  <element name="节点2"> 
    <child name="子节点2">子节点2值child> 
  element> 
root>

解析xml节点属性及值

Mysql采用内置函数EXTRACTVALUE(XML_document,XPath_string)。筛选规则【/节点】

SET @temp_xml = '

<root>
    <meta name="description">我在做测试meta>
    <element name="节点1">
        <child name="子节点1">子节 点1值child>
    element>
    <element name="节点2">
        <child name="子节点2">子节点2值child>
    element>  
root>
';
select extractvalue(@temp_xml,'/root/element/child/@name') attr, extractvalue(@temp_xml,'/root/element/child') value 

你可能感兴趣的:(随笔)