0

To dump a single database I can do:

mysqldump -u root files 

To dump a single table I can do:

mysqldump -u root files path 

How would I dump two tables combined? Something like:

mysqldump -u root files path&path_updated 

Note that I have about 50 tables, only two of which need to be exported, so I don't want to do a --skip-table on this.

2 Answers 2

3

Just keep adding table names

mysqldump -u root files path path_updated ... 

Check the documentation

http://dev.mysql.com/doc/refman/5.5/en/mysqldump.html

Sign up to request clarification or add additional context in comments.

Comments

1

mysqldump databasename table1 table2 (Reference)

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.