当前位置:   article > 正文

oracle 外键操作_oracle foreign key

oracle foreign key

– 创建

alter table 表名 add constraint 外键名 foreign key(从表外键字段) references foreign_main(主表外键字段);
  • 1

– 查询外键

select table_name, constraint_name from user_constraints where constraint_type = 'R';
  • 1

– 禁用外键

select 'alter table SYS_MENU disable constraint FK_SYS_MENU_REFERENCE_SYS_RESO;' from user_constraints where constraint_type = 'R';

alter table SYS_MENU disable constraint FK_SYS_MENU_REFERENCE_SYS_RESO;
  • 1
  • 2
  • 3

– 启用外键

select 'alter table SYS_MENU enable constraint FK_SYS_MENU_REFERENCE_SYS_RESO;' from user_constraints where constraint_type = 'R';  

alter table SYS_MENU enable constraint FK_SYS_MENU_REFERENCE_SYS_RESO;

  • 1
  • 2
  • 3
  • 4

– 删除外键

select 'alter table SYS_MENU drop constraint FK_SYS_MENU_REFERENCE_SYS_RESO;' from user_constraints where constraint_type = 'R'; 

alter table SYS_MENU drop constraint FK_SYS_MENU_REFERENCE_SYS_RESO;
  • 1
  • 2
  • 3
 
  • 1

觉得文章实用,请在右上方点个赞

 
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/497492
推荐阅读
相关标签
  

闽ICP备14008679号