Can I generate a CSV file from phpMyAdmin based on a MySQL query?
For example, let’s say I queried a table to return results for the word “image”. Could I then produce a CSV with all of the records containing the word “image”?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In PhpMyAdmin, go into the SQL tab and enter your query in there. Hit go, then click
Exportat the bottom of your results. You can select to export as a CSV.In case you’re interested, here’s how to do it via SQL without PMA: How to output MySQL query results in CSV format?