How to export table data in MySql Workbench to csv?

后端 未结 3 1838
闹比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-13 00:14

    MySQL Workbench 6.3.6

    Export the SELECT result

    • After you run a SELECT: Query > Export Results...

    Export table data

    • In the Navigator, right click on the table > Table Data Export Wizard

    • All columns and rows are included by default, so click on Next.

    • Select File Path, type, Field Separator (by default it is ;, not ,!!!) and click on Next.

    • Click Next > Next > Finish and the file is created in the specified location

提交回复
热议问题