Create database schema schema from .sql file for mysql

Is there any database schema generation tool that creates a schema schema by importing the mysql.sql database schema file.

+4
source share
2 answers

I believe MySQL Workbench is what you are looking for.

I did not do this myself, but supports importing SQL files .

+9
source

You can also point your existing database to Workbench and graphically create a schema and make any changes you prefer.

You can then export the set of new changes to another SQL so that you can easily update production databases.

+1
source

All Articles