How do we take a mysql dump for table from a query
I need something like this..
mysqldump -uroot -pxxxx mydb "select * from table where name='1';" > /tmp/a
Thanks
|
|
|
mysqldump has a
I don't know what they use, but phpMyAdmin can do this too, Just make the query, select all rows and choose the "export" button to the bottom. |
|||
|
|
|
Another option is to insert your query results into a tmp table, then dump that tmp table. |
|||
|
|