dump multiple tables mysql

Solutions on MaxInterview for dump multiple tables mysql by the best coders in the world

showing results for - "dump multiple tables mysql"
Julián
07 Jan 2020
1mysqldump -h<hostname> -u<username> -p 
2<databasename>  <table1> <table2> <table3>
3--single-transaction --no-create-info > dumpfile.sql
4