码迷,mamicode.com
首页 > 其他好文 > 详细

启用失效 外键

时间:2018-08-11 01:33:04      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:失效   int   ble   select   外键   type   alt   --   enable   

--disable fk
SELECT ‘ALTER TABLE ‘|| table_name || ‘ DISABLE CONSTRAINTS ‘ || t.constraint_name ||‘;‘
FROM user_constraints t
WHERE t.constraint_type = ‘R‘;

--enable fk
SELECT ‘ALTER TABLE ‘|| table_name || ‘ ENABLE CONSTRAINTS ‘ || t.constraint_name ||‘;‘
FROM user_constraints t
WHERE t.constraint_type = ‘R‘;

 

启用失效 外键

标签:失效   int   ble   select   外键   type   alt   --   enable   

原文地址:https://www.cnblogs.com/Nina-piaoye/p/9457693.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!