oracle SQL笔记

来源:互联网 发布:内部链接优化注意问题 编辑:程序博客网 时间:2024/06/16 15:50
  1. 查看数据库中主外键关联关系
select *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
原创粉丝点击