Oracle使用(九)_表的创建/约束/索引

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle使用(九)_表的创建/约束/索引相关的知识,希望对你有一定的参考价值。

参考技术A 表创建标准语法:
CREATE TABLE [schema.]table
(column datatype [DEFAULT expr] , …);
--设计要求:建立一张用来存储学生信息的表,表中的字段包含了学生的学号、姓名、年龄、入学日期、年级、班级、email等信息,
--并且为grade指定了默认值为1,如果在插入数据时不指定grade得值,就代表是一年级的学生
--DML是不需要commit的,隐式事务
create table student
(
stu_id number(10),
name varchar2(20),
age number(2),
hiredate date,
grade varchar2(10) default 1,
classes varchar2(10),
email varchar2(50)
);

-- 注意日期格式要转换,不能是字符串,varchar2类型要用引号,否则出现类型匹配
--DML 需要收到commit
insert into student values(20211114,'zhangsan',22,to_date('2021-11-14','YYYY-MM-DD'),'2','1',' 123@qq.com ');
insert into student(stu_id,name,age,hiredate,classes,email) values(20211114,'zhangsan',22,to_date('2021-11-14','YYYY-MM-DD'),'1',' 1234@qq.com ');

select * from student;

-- 给表添加列,添加新列时不允许为not null,因为与旧值不兼容
alter table student add address varchar(100);

-- 删除列
alter table student drop column address;

--修改列
alter table student modify(email varchar2(100));
正规表设计使用power disinger

--表的重命名
rename student to stu;
-- 表删除
drop table stu;
**
在删除表的时候,经常会遇到多个表关联的情况(外键),多个表关联的时候不能随意删除,使用如下三种方式:

2.表的约束(constraint)
约束:创建表时,指定的插入数据的一些规则
约束是在表上强制执行的数据校验规则
Oracle 支持下面五类完整性约束:
1). NOT NULL 非空约束 ---- 插入数据时列值不能空
2). UNIQUE Key 唯一键约束 ----限定列唯一标识,唯一键的列一般被用作索引
3). PRIMARY KEY 主键约束 ----唯一且非空,一张表最好有主键,唯一标识一行记录
4). FOREIGN KEY 外键约束---多个表间的关联关系,一个表中的列值,依赖另一张表某主键或者唯一键
-- 插入部门编号为50的,部门表并没有编号为50的,报错
insert into emp(empno,ename,deptno) values(9999,'hehe',50);
5). CHECK 自定义检查约束---根据用户需求去限定某些列的值,使用check约束
-- 添加主键约束/not null约束/check约束/唯一键约束
create table student
(
stu_id number(10) primary key,
name varchar2(20) not null,
age number(3) check(age>0 and age<126),
hiredate date,
grade varchar2(10) default 1,
classes varchar2(10),
email varchar2(50) unique,
deptno number(2),
);

-- 添加外键约束
create table stu
(
stu_id number(10) primary key,
name varchar2(20) not null,
age number(3) check(age>0 and age<126),
hiredate date,
grade varchar2(10) default 1,
classes varchar2(10),
email varchar2(50) unique,
deptno number(2),
FOREIGN KEY(deptno) references dept(deptno)
);
-- 创建表时没添加外键约束 也可以修改 其中fk_0001为外键名称
alter table student add constraint fk_0001 foreign key(deptno) references dept(deptno);

索引创建有两种方式:

组合索引:多个列组成的索引
--索引:加快数据剪碎
create index i_ename on emp(ename);

--当创建某个字段索引后,查询某个字段会自动使用到索引
select * from emp where ename = 'SMITH';
--删除索引 索引名称也是唯一的
drop index i_ename;

一些概念:
回表:
覆盖索引
组合索引
最左匹配

oracle--约束(主键非空检查)

问题1:学号重复了,数据还可以插入成功
						使用主键约束:学号是唯一标识一条数据的,所以必须唯一且不能为空
							   ---(1)、在确定为主键的字段后添加 primary key关键字
							   ---(2)、在创建表的后面使用:constraints pk_表名_字段名 primary key(字段名)
							   --(3)、在创建表后使用 alter table 表名 add constraints pk_表名_字段名 primary key(字段名);
							   --删除主键:alter table 表名 drop constraints pk_表名_字段名
					问题2:姓名可以为空。
						使用非空约束
							   ---(1)、创建表的时候在字段后面添加not null
							   ---(2)、在创建表字段后使用 constraints ck_表名_字段名 check(字段名 is not null)  了解
							   --(3)、在创建表后使用alter table 表名 modify 字段名 类型 not null;
							   ---(4)、修改字段可以存储空值:alter table 表名 modify 字段名 类型 null;
					问题3:性别不但可以为空,还可以为其他不知道的字符
						使用检查约束
							  ---(1)、创建表的时候在字段后使用 default 值 check(条件),
							  ---------但是会允许空值的出现,并且默认值只有在字段不声明的情况下生效
							  ---(2)、在创建表所有字段后使用:constraints ck_表名_字段名  check(条件)
							  ---(3)、在创建表后使用:alter table 表名 add constraints ck_表名_字段名 check(条件)
					问题4:年龄可以超过200 
							 --使用检查约束条件
					问题5:qq号一致
							使用唯一约束
							 --(1)、在字段后直接使用unique关键字
							 --(2)、在所有字段后使用:constraints uk_表名_字段名 unique(字段名)
							 --(3)、 alter table 表名 add constraints uk_表名_字段名 unique(字段名)
							 --删除唯一约束:alter table 表名 drop constraints uk_表名_字段名

  

1、主键约束

三种方式主键约束方式

create table student(
       sno number(10) primary key,
       sname varchar2(100),
       sage number(3),
       ssex char(4),
       sbirth date,
       sqq varchar2(30)
);
create table student(
       sno number(10),
       sname varchar2(100),
       sage number(3),
       ssex char(4),
       sbirth date,
       sqq varchar2(30),
       constraint pk_student_sno primary key(sno) ---添加主键约束
);
create table student(
       sno number(10),
       sname varchar2(100),
       sage number(3),
       ssex char(4),
       sbirth date,
       sqq varchar2(30)
);
alter table student add constraint pk_student_sno primary key(sno);
alter table student drop constraint pk_student_sno;

 

select * from student for update;
drop table student;

 

非空约束

三种方式

create table student(
       sno number(10) primary key,
       sname varchar2(100) not null,
       sage number(3),
       ssex char(4),
       sbirth date,
       sqq varchar2(30)
);

 

create table student(
       sno number(10) primary key,
       sname varchar2(100),
       sage number(3),
       ssex char(4),
       sbirth date,
       sqq varchar2(30),
       constraints ck_student_sname check(sname is not null)
);

 

create table student(
       sno number(10) primary key,
       sname varchar2(100),
       sage number(3),
       ssex char(4),
       sbirth date,
       sqq varchar2(30)
       
);

  alter table student add constraint ch_student_sname check(sname is not null);  

 

alter table student drop constraint ch_student_sname 

 

检查约束

create table student(
       sno number(10) primary key,
       sname varchar2(100) not null,
       sage number(3) check(sage<150 and sage>0),
       ssex char(4) check(ssex =‘男‘ or ssex = ‘女‘),
       sbirth date,
       sqq varchar2(30)      
);

 

create table student(
       sno number(10) primary key,
       sname varchar2(100) not null,
       sage number(3),
       ssex char(4) check(ssex =‘男‘ or ssex = ‘女‘),
       sbirth date,
       sqq varchar2(30),
       constraint ch_student_sage check(sage<150 and sage>0)      
);

  

create table student(
       sno number(10) primary key,
       sname varchar2(100) not null,
       sage number(3),
       ssex char(4) check(ssex =‘男‘ or ssex = ‘女‘),
       sbirth date,
       sqq varchar2(30)     
);

alter table student add constraint ch_student_sage check(sage<150 and sage>0);

 

alter table student drop constraint ch_student_sage;

  

 

 

以上是关于Oracle使用(九)_表的创建/约束/索引的主要内容,如果未能解决你的问题,请参考以下文章

Oracle二维表的创建与约束以及修改

Oracle数据库对象_约束

Oracle数据库——表的创建与管理

oracle建表的时候同时创建主键,外键,注释,约束,索引

在Oracle数据库中创建一个表,用两个键做联合主键,sql语句该怎么写?

在oracle中如何使用sql语句创建默认约束