adspace
How will you export tables as an xml file in mysql?
Answer Posted / Rochak Mehrotra
To export tables as XML files in MySQL, use the `mysqldump` command-line tool with the `--xml` option. Here's an example:
```sh
mysqldump -u [username] -p[password] --xml=[table_name].xml [database_name] [table_name]
```
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers