表的管理

表是数据库中最基本的存储单位


一、表的创建

语法: create table 表名 (列名  数据类型,……);

create table employee(emp_id varchar2(30),emp_name varchar2(30));

备注:表名在同一用户下必须唯一

二、表的查看

2.1 、查看表结构

语法:desc 表名

descemployee

2.2、查看表中的数据

语法:select *  from 表名;

selet *  from employee;

三、表的修改

3.1、 添加字段(可以一次添加多个字段)

语法:alter table 表名 add 字段名 数据类型;

alter table employee add emp_role varchar2(100);

备注:oracle允许一次添加多个字段,alter table employee add (emp_role varchar2(100),hh date);

3.2、 更改字段的数据类型

语法:alter table 表名 modify 字段名 数据类型;

alter table employee modify emp_role varchar2(200);修改字符长度

alter table employee modify emp_role number(10); 修改数据的类型

备注:oracle允许一次修改多个列的数据类型,alter table employee modify (emp_role varchar2(200),emp_id varchar2(100));

3.3、 删除字段

语法:alter table 表名 dropcolumn字段名 ;

alter table employee drop column emp_role;

3.4、 更改字段名

语法:alter table 表名 renamecolumn字段原名 to 字段新名;

alter table employee rename column emp_role to new_role;

3.5、 更改表名

语法:rename 旧表名 to 新表名;

rename employee to new_employee;

四、表的删除

4,1、 只清空表中的数据,不删除表结构,速度比delete快

语法:truncate table 表名;

truncate table employee;

4,2、 删除整个表

语法:drop table 表名;

drop table employee;

五、临时表

临时表数据清空的条件有两种:一是事务提交或回滚,二是会话结束

5,1、 会话级临时表

语法:create global temporary table表名 (列名  数据类型,……) on commit preserve rows;

其中global不可省略,on commit preserve rows表示提交事务时,保留数据

create global temporary table aa(id number(5),name varchar2(100)) on commit preserve rows;

备注:会话临时表中的数据仅在当前会话中存在,一旦会话结束,数据库会自动清理其中的数据

5,1、 事务级临时表

语法:create global temporary table 表名 (列名  数据类型,……) on commit delete rows;

其中global不可省略,on commit preserve rows表示提交事务时,删除表中数据

create global temporary table bb(id number(5),name varchar2(100)) on commit delete rows;

备注:事务临时表中的数据仅在当前事务有效,一旦事务结束,数据库会自动清理其中的数据

数据字典: user_tables查看当前用户下的表信息,包括表空间、是否为临时表,表的类型等信息5,2、 临时表的作用

1、大表分割

2、解决并行问题

3、作为数据缓存5,3、 特殊表dual

dual表仅有一行一列,只有dummy列,是数据库中的虚表,不能删除

你可能感兴趣的:(表的管理)