Taking backup
# mysqldump -u -p mydatabase table1 > table1.sql
restoring from backup file need not include table name
# mysql -u -p mydatabase < table1.sql [/bash]
Linux, Windows, Software Tips, Articles and Hacks
Taking backup
# mysqldump -u -p mydatabase table1 > table1.sql
restoring from backup file need not include table name
# mysql -u -p mydatabase < table1.sql [/bash]