Dependency objects MySQL -


advise gui tool viewing dependent object database mysql.
for example:

use db;  create table t1(   id int(11) not null,   `column` int(11) default null,   unique index id (id) );  create table t2(   id int(11) not null,   `column` int(11) default null,   index fk_t2_t1_id (`column`),   constraint fk_t2_t1_id foreign key (`column`)   references t1 (id) on delete restrict on update restrict );  create table t3(   id int(11) not null,   `column` int(11) default null,   index fk_t3_t1_id (`column`),   constraint fk_t3_t1_id foreign key (`column`)   references t1 (id) on delete restrict on update restrict );  delimiter $$  create definer = 'root'@'localhost' procedure procedure1() begin   select     *       db.t1; end $$ delimiter ; 

i want see objects refer table t1. in example t2, t3 , procedure1

your question isn't clear, sounds you're looking sort of gui tool data modeling mysql. if that's correct, try looking @ mysql workbench.


Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -