当前位置:Gxlcms > 数据库问题 > ORACLE中查看表中的外键来源于哪些表

ORACLE中查看表中的外键来源于哪些表

时间:2021-07-01 10:21:17 帮助过:22人阅读

1. ORACLE中查看表中的外键来源于哪些表

select cl.table_name  
  from user_cons_columns cl  
  left join user_constraints c  
    on cl.constraint_name = c.r_constraint_name  
 where c.constraint_type = ‘R‘  
   and c.table_name = ‘表名‘  

 

2.Oracle中查看表中的主键被被哪些表引用为外键

 

ORACLE中查看表中的外键来源于哪些表

标签:引用   表名   user   table   bsp   str   int   where   查看   

人气教程排行