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.