How to export MySQL schema with data?

后端 未结 3 2069
臣服心动
臣服心动 2021-02-02 07:49

I have a complete schema with many tables with data in them in MySQL query browser. Now I want to send this complete database with all the tables/data to my colleague. How can I

3条回答
  •  心在旅途
    2021-02-02 08:36

    You can use the mysqldump command.

    If you are using MySQL Workbench open the server administration tab and you can do an Export To Disk from there using a GUI interface.

    There are options to dump to a single file or directory, and whether to include data or not.

提交回复
热议问题