1、PLSQL为某个字段添加约束
--为表增加主键约束
alter table 表名
add constraints 约束名称(多个约束名称不能相同) primary key(添加约束的字段);
--添加唯一约束,tab_check_unique表示约束的名称
alter table tab_check
add constraints tab_check_unique unique(che_name);
--添加检查约束
alter table tab_check
add constraints tab_check_age check(che_age>18 and che_age<60);
--删除主键约束
alter table tab_check
drop constraints tab_check;
--禁用约束
alter table tab_check disable constraints tab_check;
--启用约束
alter table tab_check enable constraints tab_check;
为表添加外键约束:
alter table tab_stu
add constraints tab_stu foreign key(class_id) references tab_class(class_id);
--联合主键
create table tab_person(
tab_firstname varchar2(10),
tab_lastname varchar2(10),
tab_gender varchar2(5),
primary key(tab_firstname,tab_lastname)
);