Generate CSV based on MySQL query from phpMyAdmin

前端 未结 4 1222
感情败类
感情败类 2020-12-16 09:48

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

4条回答
  •  佛祖请我去吃肉
    2020-12-16 09:49

    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.

提交回复
热议问题