oracle基础知识3

1.增加not null 约束
alter table stu modify name not null;

2.增加unique约束
alter table stu add constraint u_stu unique(stu_id);

3.增加primary key 主键约束
alter table stu add primary key(stu_id);

4.增加foreign key约束
alter table stu add report_id number(10) references report(report_id);

5.增加CHECK约束
alter table stu add check(age between 1 and 100);

你可能感兴趣的:(oracle)