I need to export the data and structure of a table but the data must have a specific condition (WHERE status=0 and id>20).
How to export mysql database based on a where condition from phpMyAdmin or anything.
|
I need to export the data and structure of a table but the data must have a specific condition (WHERE status=0 and id>20). How to export mysql database based on a where condition from phpMyAdmin or anything. |
|||
|
|
|
Using SQL from the mysql command-line:
or using mysqldump with the --where= option:
Using phpMyAdmin you can execute the query in the GUI & click "export" under the resultset. |
||||
|
|