oracle 定义数据完整性
1. 定义主键约束
1.1 在创建表时定义主键约束
create table student
(
name varchar2(8),
studentid varchar2(10) primary key,
sex char(2)
);
1.2 创建表后,使用alter table命令添加约束
1.2.1 创建表
create table student
(
name varchar2(8),
studentid varchar2(10),
sex char(2)
);
1.2.2 添加主键约束
alter table student
add constraint pk_student primary key(studentid);
其中 constraint pk_student 用于给该主键约束定义名称(可省略)
其中 pk_student 为约束名,用于修改约束,
例如:删除该主键约束
alter table student
drop constraint pk_student ;
2 定义not null约束
not null 约束只能定义为列级约束
2.1 在创建表时定义not null约束
同样的not null约束可以在创建表时定义
eg:
create table tset
(
name varchar2(8) NOT NULL,
studentid varchar2(10) primary key,
sex char(2)
);
2.2 创建表后,在修改表添加not null约束
2.2.1 创建表
create table tset
(
name varchar2(8),
studentid varchar2(10) primary key,
sex char(2)
);
2.2.2添加not null约束
alter table test modify name not null;
3 定义唯一性 unique约束
唯一性约束是指:被约束的字段不能出现重复输入的值
唯一性与逐渐的区别:
(1)unique一个表可以定义多个,而primary key 一个表只能定义一个
(2)unique允许被约束的字段为空,而primary key不允许为空
3.1 创建表示定义unique约束
create table test
(
name varchar2(8) NOT NULL,
studentid varchar2(10) primary key,
sex char(2),
idnum char(18) unique
);
3.2创建表后,为表添加unique约束
3.2.1 创建表
create table test
(
name varchar2(8) NOT NULL,
studentid varchar2(10) primary key,
sex char(2),
idnum char(18)
);
3.2.2 添加约束
alter table test
add constraint un_idnum unique(idnum);
4 定义检查check约束
检查约束用来指定某列的可取值得范围,只有符合条件的值才能输入到表中
4.1 在创建表时定义check
create table test
(
name varchar2(8) NOT NULL,
studentid varchar2(10) primary key,
sex char(2) constraint ch_sex check(sex in ('男','女')),
idnum char(18)
);
4.2.1 创建表
create table test
(
name varchar2(8) NOT NULL,
studentid varchar2(10) primary key,
sex char(2),
idnum char(18)
);
4.2.2 添加检查约束
alter table test add constraint ch_sex
check(sex in('男','女'));
5 定义外键约束
5.1 创建表示定义外键
5.1.1 在定义字段时定义外键
create table course
(
id varchar2(10) primary key,
classname varchar2(10),
studentid VARCHAR2(10) references test(studentid)
)
5.1.2 定义字段后,再定义外键
create table course
(
id varchar2(10) primary key,
classname varchar2(10),
studentid VARCHAR2(10),
constraint fk_course foreign key(studentid) references test(studentid)
);
*************注意两种方式的区别*****************
5.2 通过alter table 命令创建外键约束
alter table course
add constraint fk_course foreign key(studentid) references test(studentid);
oracle 定义数据完整性的更多相关文章
- SQL Server-数据库架构和对象、定义数据完整性(二)
前言 本节我们继续SQL之旅,本节我们如题来讲讲一些基本知识以及需要注意的地方,若有不妥之处,还望指出,简短的内容,深入的理解,Always to review the basics. 数据库架构和对 ...
- SQL Server-数据库架构和对象、定义数据完整性
前言 本节我们继续SQL之旅,本节我们如题来讲讲一些基本知识以及需要注意的地方,若有不妥之处,还望指出,简短的内容,深入的理解,Always to review the basics. 数据库架构和对 ...
- Oracle数据库 数据完整性和DML语句
数据完整性和DML语句 数据完整性 数据完整性(Data Integrity)是指数据的精确性(Accuracy) 和可靠性(Reliability).它是应防止数据库中存在不符合语义规定的数据和防止 ...
- 问题:oracle DECLARE 变量重复利用;结果:Oracle 定义变量总结
首先,当在cmd里办入scott密码提示错误时,可以这样改一下,scott的解锁命令是: 以system用户登录:cmdsqlplus system/tigertigeralter user scot ...
- Oracle 定义变量总结
首先,当在cmd里办入scott密码提示错误时,可以这样改一下,scott的解锁命令是: 以system用户登录:cmdsqlplus system/tigertigeralter user scot ...
- Oracle定义varchar2()类型存储汉字的长度问题
varchar2最大是4000字节,那么就看你的oracle字符集:(select userenv('language') from dual;)如果字符集是16位编码的,ZHS16GBK,那么每个字 ...
- Oracle定义两个变量,并对两个变量的值的长度进行判断
这个例子其实很简单,但是往往简单的东西如果不用心就会漏洞百出,简单的一个逻辑判断,是为了给复杂逻辑判断做出铺垫 语法格式: if<condition_expression> then pl ...
- Oracle定义常量和变量
1.定义变量 变量指的就是可变化的量,程序运行过程中可以随时改变其数据存储结构 标准语法格式:<变量名><数据类型>[(长度):=<初始值>] 示例: declar ...
- oracle 定义临时表
创建Oracle 临时表,可以有两种类型的临时表: 会话级的临时表 事务级的临时表 . 1) 会话级的临时表因为这这个临时表中的数据和你的当前会话有关系, 当你当前SESSION不退出的情况下,临时表 ...
随机推荐
- java学习笔记day07
1.throwable下面的子类分为两大类:Error 和 Exception 2.如果方法上有throws Exception,则必须对异常进行处理: try{ 需要检测异常代码 } ...
- Hadoop 安装(1) CENTOS 安装与配置
配置虚拟机,名字 Hadoop_Slave4,内存为1024MB,15GB. 进入安装centos. 配置Hostname: Slave4.Hadoop 配置网络,设置静态IP:192.168.1.2 ...
- MVC不错的学习资料
MVC不错的学习资料: http://www.cnblogs.com/darrenji/
- 地图:CLGeocoder地址解析与反地址解析
1.导入系统框架
- NSArray 数组操作
/*---------------------------创建数组------------------------------*/ //NSArray *array = [[NSArray alloc ...
- HDU 1065 - I Think I Need a Houseboat
又是恶心人的水题 圆周率取3.1415926就啥事没有.. #include <iostream> #include <cstdio> #include <cmath&g ...
- E - The King
Description Once upon a time in a country far away lived a king and he had a big kingdom. He was a v ...
- javabean对象自动赋值给另一个javabean对象
方法1:把JavaBean的from的值自动set给to,省略了自己从from中get然后再set给to import java.beans.BeanInfo;import java.beans.In ...
- keepalived 安装和配置
第一步:安装 yum -y install keepalived 第二步:配置 /etc/keepalived/keepalived.conf ! Configuration File for kee ...
- If-Modified-Since和If-None-Match
If-Modified-Since & If-None-MatchIf-Modified-Since,和 Last-Modified 一样都是用于记录页面最后修改时间的 HTTP 头信息,只是 ...