You'll find what you need directly in the mysqldump documentation:
mysqldump -u username -p db_test table1 table2 ... > db_test.sql
Load the dump the same way as if it was a full database dump.
You'll find what you need directly in the mysqldump documentation:
mysqldump -u username -p db_test table1 table2 ... > db_test.sql
Load the dump the same way as if it was a full database dump.