首页 > 开发 > 综合 > 正文

主外键约束信息

2024-07-21 02:34:14
字体:
来源:转载
供稿:网友
Copy from The Oracle (tm) Users' Co-Operative FAQ-- Parent / Child / Key Reference --set pages 50000
set feedback off
spool constraint.log col parent format a27
col child  format a27
col key    format a21select a.table_name         Parent,
       b.table_name         Child,
       column_name          Key,
       substr(position,1,1) P
from
      user_constraints a, user_constraints b, user_cons_columns c
where
      a.constraint_name = b.r_constraint_name
and   a.constraint_name = c.constraint_name
order by 1, 2, 4;spool off

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表