码迷,mamicode.com
首页 > 其他好文 > 详细

查找某个表被哪些表引用。外键

时间:2017-11-30 15:17:40      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:select   blog   str   sel   java   href   pos   wpost   order   

select fk_col.constraint_name, fk_col.table_name, fk_col.column_name
  from user_constraints pk, user_constraints fk, user_cons_columns fk_col
 where pk.table_name = ‘TEST‘
   and pk.constraint_type = ‘P‘
   and fk.r_constraint_name = pk.constraint_name
   and fk_col.constraint_name = fk.constraint_name
 order by 2, 3;

查找某个表被哪些表引用。外键

查找某个表被哪些表引用。外键

标签:select   blog   str   sel   java   href   pos   wpost   order   

原文地址:http://www.cnblogs.com/kakaisgood/p/7928776.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!