Last Updated: February 25, 2016
·
414
· arthurbarros

Copy MySQL tables between hosts in one line

mysqldump -h ip -u user -p pass from_database from_table | mysql -u user -p pass target_database

Enjoy.