5

is there a way for me to generate an Entity Relationship Diagram (ERD) from SQLyog? or if not, from PHPmyAdmin of XAMPP? thanks!

Brandon Young
  • 523
  • 2
  • 8
  • 19

5 Answers5

6

SQLyog has this feature- Schema designer, which is a visual interface where tables and table structures can be defined, displayed and manipulated. But Schema Designer is not a full featured ERD diagramming tool. I don't think it is possible to generate from PHPMyAdmin either. You could look into this.

Community
  • 1
  • 1
Ashwin A
  • 3,779
  • 23
  • 28
4

You can do it in SQLyog. Press Ctrl+Alt+D. This will open the Schema Designer. It's not a very good designer but it works well for simple ERDs.

fWd82
  • 840
  • 1
  • 13
  • 31
Rabia Naz khan
  • 507
  • 4
  • 13
1

SQLYog has a Schema Designer option Ctrl+Alt +D which opens a Schema Designer window.

Right click inside Schema Designer canvas to get small window, select checkbox add tables ( Select all checkboxes if you want all of them on Canvas)

Click Add to get ER diagram of the tables.

fWd82
  • 840
  • 1
  • 13
  • 31
Praveen Kumar
  • 1,515
  • 1
  • 21
  • 39
1

It's Ctrl + Alt + D

Note: It's only for full version.

Web_Designer
  • 72,308
  • 93
  • 206
  • 262
Harshil
  • 119
  • 1
1

Yes you can generate ERD with PHPMyAdmin. PHPMyadmin added this functionality from version 3.4

detail step to generate ERD : http://goo.gl/0z3vFE

You can refer to PHPMyAdmin documentation for more info: http://www.phpmyadmin.net/documentation/#pmadb

Suresh Kamrushi
  • 15,627
  • 13
  • 75
  • 90