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 代表外键

猜你喜欢

转载自hengltyy.iteye.com/blog/1849996