ORACLE中查看表中的外键来源于哪些表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ORACLE中查看表中的外键来源于哪些表相关的知识,希望对你有一定的参考价值。
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中查看表中的外键来源于哪些表的主要内容,如果未能解决你的问题,请参考以下文章