user1384668
user1384668

Reputation: 127

Software for SQL visualization of tables relations

I have SQL file from my MYSQL database. How could I quick get the picture of tables relations, something like this:

picture here

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

Answers (1)

aleroot
aleroot

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

Related Questions