查找某个表所有外键

select *
  from user_constraints
 where R_CONSTRAINT_NAME in
       (select constraint_name
          from user_constraints
         where table_name = 'SYS_USERS');

猜你喜欢

转载自wangning1125.iteye.com/blog/2092570