取消非空约束

来源:互联网 发布:黑马程序员就业班退学 编辑:程序博客网 时间:2024/06/11 17:30
--查询所有约束
select constraint_name, search_condition
from user_constraints
where table_name = 'PRPDAGENTORGMEMBER'
and constraint_type = 'C';
--放弃某个约束
alter table PRPDAGENTORGMEMBER drop constraint SYS_C00119052;
原创粉丝点击