views:

20

answers:

1

Hi Stack Overflow,

What's a good solution for modeling an existing and very complicated MySQL schema. Preferably with the following features:

  • completely visual
  • drill down on click
  • shows keys, indexes
  • gives sample data per field*

*as fields aren't always intuitively named

Thanks! Emile

+2  A: 

Try MySQL Workbench

MySQL Workbench provides DBAs and developers an integrated tools environment for:

  • Database Design & Modeling
  • SQL Development (replacing MySQL Query Browser)
  • Database Administration (replacing MySQL Administrator)

You can also check this interesting post Top 10 MySQL GUI Tools

Sandy
Sandy, thanks for your advice!! I've heard of MySQL workbench for designing new tables, but just discovered the reverse engineering link, which helps with my "existing" schema needs.
Emile
@Emile - glad that it helped :)
Sandy