Reputation: 127
I have SQL file from my MYSQL database. How could I quick get the picture of tables relations, something like this:
It would be great if I could just import file to the software and it would output the view of the program.
Upvotes: 1
Views: 2160
Reputation: 72636
You have to load the file into a database with mysql utility :
mysql -u root -p db_name < file.sql
then you can open the database with a visual tool like mysql workbench ...
Upvotes: 1