Mysql如何获取对象的依赖关系举例:存储过程 pr_test001 的定义语句是create procedure pr_test001( @id int ) as 
begin 
 select id ,name from tab001 a 
where exists ( select 1 from tab002 b where a.id = b.id ) and a.id = @id ;
call pr_test002( @id ) ;
end  
存储过程 pr_test001 的定义语句是create procedure pr_test002( @id int ) as 
begin 
 insert into logs_ ( id , dt ) values( @id ,now()) ;
end  现在想要的结果是对于过程 pr_test001来,它依赖于表tab001,tab002 ,依赖的过程是pr_test002;
对于过程 pr_test002来,它依赖于表logs_  ;问题:有没有办法获取某对象的依赖关系呢 ?最好是封装好的过程MySQL