欢迎来到天天文库
浏览记录
ID:13029192
大小:28.00 KB
页数:3页
时间:2018-07-20
《概述oracle unique约束》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、概述Oracle Unique约束Oracle还是比较常用的,于是我研究了一下OracleUnique约束,在这里拿出来和大家分享一下,希望对大家有用。如果某个约束只作用于单独的字段,即可以在字段级定义约束,也可以在表级定义约束,但如果某个约束作用于多个字段,必须在表级定义约束◆在定义约束时可以通过CONSTRAINT关键字为约束命名,如果没有指定,Oracle将自动为约束建立默认的名称定义primarykey约束(单个字段)1.create table employees (empno number(5) primary key,...) 指定约束名1.cr
2、eate table employees (empno number(5) constraint emp_pk primary key,...) 定义primarykey约束(多个字段,在表级定义约束)1.create table employees 2.(empno number(5), 3.deptno number(3) not null, 4.constraint emp_pk primary key(empno,deptno) 5.using index tablespace indx 6.storage (initial 64K 7.next 64
3、K 8.) 9.) Oracle自动会为具有PRIMARYKEY约束的字段(主码字段)建立一个唯一索引和一个NOTNULL约束,定义PRIMARYKEY约束时可以为它的索引指定存储位置和存储参数1.alter table employees add primary key (empno) 2.alter table employees add constraint emp_pk primary key (empno) 3.alter table employees add constraint emp_pk primary key (empno,deptno)
4、 4.not null约束(只能在字段级定义NOT NULL约束,在同一个表中可以定义多个NOT NULL约束) 5.alter table employees modify deptno not null/null Unique约束1.create table employees 2.( empno number(5), 3.ename varchar2(15), 4.phone varchar2(15), 5.email varchar2(30) unique, 6.deptno number(3) not null, 7.constraint emp_e
5、name_phone_uk unique (ename,phone) 8.) 9.alter table employees 10.add constraint emp_uk unique(ename,phone) 11.using index tablespace indx 定义了OracleUnique约束的字段中不能包含重复值,可以为一个或多个字段定义OracleUnique约束,因此,Unique即可以在字段级也可以在表级定义,在OracleUnique约束的字段上可以包含空值.foreignkey约束◆定义为FOREIGNKEY约束的字段中只能包含相
6、应的其它表中的引用码字段的值或者NULL值◆可以为一个或者多个字段的组合定义FOREIGNKEY约束◆定义了FOREIGNKEY约束的外部码字段和相应的引用码字段可以存在于同一个表中,这种情况称为"自引用"◆对同一个字段可以同时定义FOREIGNKEY约束和NOTNULL约束
此文档下载收益归作者所有