Oracle基础语句
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle基础语句相关的知识,希望对你有一定的参考价值。
1、--创建索引,创建之后,是按照LAST_NAME的值升序存放,it_lastname为索引名
create [unique] [ cluster ] index 索引名 on 表名(字段名);
unique:索引值不能重复。
cluster:建立的索引是聚簇索引。
create index it_lastname on it_employees(last_name);
2、删除表
当某个基表不再不需要时,删除语句
drop table 表名;
删除视图
drop view 视图名;
删除索引
drop index 索引名;
以上是关于Oracle基础语句的主要内容,如果未能解决你的问题,请参考以下文章