rxmnnxfpvg
rxmnnxfpvg

Reputation: 31033

SQL visualization software

I have a large .sql file of tables -- is there software that can auto-generate visual clusters of tables (as they are related by foreign keys) based on a SQL file?

Upvotes: 3

Views: 1009

Answers (3)

leo_gu
leo_gu

Reputation: 21

I think you are looking for some tools like this one: https://sqlflow.gudusoft.com/#/

It offers you the option to visualize the SQL as well as generate proper E-R diagram. You can either upload the SQL file or directly paste your SQL statements.

For more info you can check their doc:https://docs.gudusoft.com/1.-introduction/readme

Upvotes: 2

Neville Kuyt
Neville Kuyt

Reputation: 29649

You need to google "Entity Relationship diagram" - there are several tools, many of them enterprise and expensive. I've used ErWin and StarDesigner.

Upvotes: 1

Henry Merriam
Henry Merriam

Reputation: 824

If you're using MySQL, take a look at MySQL Workbench.

Upvotes: 1

Related Questions