Oracle查看表之间的键关联关系

2014-11-24 12:34:58 · 作者: · 浏览: 0
Oracle查看表之间的键关联关系
select a.constraint_name, a.table_name, b.constraint_name
from user_constraints a, user_constraints b
where a.constraint_type = 'R'
and b.constraint_type = 'P'
and a.r_constraint_name = b.constraint_name
P 代表主键
R 代表外键