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 p
create table tmp_export SELECT * from table_name WHERE column_name .....
It created a table and then I exported the table as CSV. This solution worked fine for me.