If my database has 10 tables and I want to dump only 3 tables. Is it possible with mysqldump command?
2 Answers
If you're in local machine then use this command
/usr/local/mysql/bin/mysqldump -h127.0.0.1 --port = 3306 -u [username] -p [password] --databases [db_name] --tables [tablename] > /to/path/tablename.sql;
For remote machine, use below one
/usr/local/mysql/bin/mysqldump -h [remoteip] --port = 3306 -u [username] -p [password] --databases [db_name] --tables [tablename] > /to/path/tablename.sql;
1 Comment
Musa Haidari
Great! just if you add
--where="CONDITION='VALUE'" would be great