Dump only the data with mysqldump without any table information

database, database-dump, database-table, dump, mysql

Solution

mysqldump --no-create-info ...

Also you may use:

- `--skip-triggers`: if you are using triggers

- `--no-create-db`: if you are using `--databases ...` option

- `--compact`: if you want to get rid of extra comments

Problem

I am looking for the syntax for dumping all data in my mysql database. I don't want any table information.

Original source

Related problems