I have exported my sql statements from phpmyadmin ‘data.sql’. I wish to reverse engineer the sql file to display the relational database diagram. Is there a way? I tried tools such as Visio, it is not accepting .sql files.
I have exported my sql statements from phpmyadmin ‘data.sql’. I wish to reverse engineer
Share
How about just executing it locally, and then look at all the tables, views, data, etc from there? All depends on what data.sql actually contains. If its insert statements only, you can only guess on the schema. If it is CREATE TABLE statements, you will have more luck.