oracle 查询外键对应的主从表

oracle 查询外键对应的主从表:

 

select pk.table_name,fk.table_name,fk.constraint_name  from
(select * from user_constraints  where constraint_type='R') fk,
(select * from user_constraints  where constraint_type='P') pk
where fk.r_constraint_name=pk.constraint_name

你可能感兴趣的:(oracle)