1,Oracle的约束
· 如果某个约束只作用于单独的字段,即可以在字段级定义约束,也可以在表级定义约束,但如果某个约束作用于多个字段,必须在表级定义约束
· 在定义约束时可以通过CONSTRAINT关键字为约束命名,如果没有指定,ORACLE将自动为约束建立默认的名称
2,定义primary key约束(单个字段)
SQL> create table bkeep1(empno number(5) primary key);
Table created.
3,指定约束名
SQL> create table bkeep2(empno number(5) constraint emp_pk primary key);
Table created.
4,定义primary key约束(多个字段,在表级定义约束)
SQL> create table bkeep3
2 (empno number(5), deptno number(3) not null,
3 constraint emp_pk primary key(empno,deptno));
constraint emp_pk primary key(empno,deptno))
*
ERROR at line 3:
ORA-02264: name already used by an existing constraint //约束名必须唯一
SQL> run
1 create table bkeep3
2 (empno number(5), deptno number(3) not null,
3* constraint bkeep3_pk primary key(empno,deptno))
Table created.
5,【重要】ORACLE会自动为具有PRIMARY KEY约束的字段创建一个唯一索引和一个NOT NULL约束。
6,通过修改表来添加约束
SQL> alter table bkeep4 add constraint bkeep4_pk primary key (employee_id);
Table created.
SQL> alter table employees add constraint emp_pk primary key (empno,deptno)
7,not null约束(只能在字段级定义NOT NULL约束,在同一个表中可以定义多个NOT NULL约束)
SQL> alter table employees modify deptno not null/null //语法
SQL> alter table bkeep5 modify department_id not null;
alter table bkeep5 modify department_id not null
*
ERROR at line 1:
ORA-02296: cannot enable (ZBB.) - null values found //如果表中已经存在null,就不能更改其为not null约束
SQL> alter table bkeep5 modify email null;
Table altered.
8,unique约束
SQL> create table bkeep6
2 (empno number(5), ename varchar2(25),
3 phone varchar2(15),email varchar2(15) unique,
4 deptno number(3) not null,
5 constraint bkeep6_ename_phone_uk unique(ename,phone));
Table created.
或者
SQL>alter table bkeep6
add constraint bkeep6_ename_phone_uk unique(ename,phone)
using index tablespace users
定义了UNIQUE约束的字段中不能包含重复值,可以为一个或多个字段定义UNIQUE约束,因此,UNIQUE即可以在字段级也可以在表级定义,
TIPS: 在UNIQUED约束的字段上可以包含空值.
9,foreign key约束
·定义为FOREIGN KEY约束的字段中只能包含相应的其它表中的引用码字段的值或者NULL值
·可以为一个或者多个字段的组合定义FOREIGN KEY约束
·定义了FOREIGN KEY约束的外部码字段和相应的引用码字段可以存在于同一个表中,这种情况称为"自引用"
·对同一个字段可以同时定义