How to export table data in MySql Workbench to csv?

后端 未结 3 1834
闹比i
闹比i 2020-12-12 23:24

I am wondering how do I export table data into a csv? I read that I need to use mysql workbench command line but I can not figure out how to launch the cmd line(don\'t know

3条回答
  •  失恋的感觉
    2020-12-12 23:56

    You can select the rows from the table you want to export in the MySQL Workbench SQL Editor. You will find an Export button in the resultset that will allow you to export the records to a CSV file, as shown in the following image:

    MySQL Workbench Export Resultset Button

    Please also keep in mind that by default MySQL Workbench limits the size of the resultset to 1000 records. You can easily change that in the Preferences dialog:

    MySQL Workbench Preferences Dialog

    Hope this helps.

提交回复
热议问题