How to convert a MySQL DB to XML?

前端 未结 5 1919
庸人自扰
庸人自扰 2020-12-07 01:24

How can you convert a MySQL database to XML? I want everythimg... data and there relation in XML schema file

how to convert from sqlyog community 8.13(free version)<

5条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-07 01:31

    mysqldump --xml test > test.xml
    

    or

    mysqldump -X test > test.xml
    

    mysqldump to xml

提交回复
热议问题