现在有一张表:
create table student(
id number,
grade number
)然后: 建立约束:
alter table student
add constraint STU_G check(grade>60);然后插入一条数据:insert into student values(1,50);这样显然 不能插入:好 现在 我禁用约束:
alter table student disable constraint  STU_G然后 进行插入操作:
insert into student values(1,50);
插入成功:好现在再启用约束:alter table student disable constraint  STU_G;
启用约束 失败: 因为 存在不满足约束条件的数据:为什么啊 ?? 应该怎么改变 让它可以 enable成功啊