Home  >  Article  >  Database  >  oracle 创建索引

oracle 创建索引

WBOY
WBOYOriginal
2016-06-07 15:07:401243browse

适当的使用索引可以提高数据检索速度,可以给经常需要进行查询的字段创建索引。 oracle的索引分为5种:唯一索引,组合索引,反向键索引,位图索引,基于函数的索引 创建Oracle索引的标准语法: CREATE INDEX 索引名 ON 表名 (列名)TABLESPACE 表空间名; 创建

适当的使用索引可以提高数据检索速度,可以给经常需要进行查询的字段创建索引。

oracle的索引分为5种:唯一索引,组合索引,反向键索引,位图索引,基于函数的索引

创建Oracle索引的标准语法:

CREATE INDEX 索引名 ON 表名 (列名)

TABLESPACE 表空间名;


创建唯一索引:

CREATE unique INDEX 索引名 ON 表名 (列名)

TABLESPACE 表空间名;

 

创建组合索引:

CREATE INDEX 索引名 ON 表名 (列1,列2)

TABLESPACE 表空间名;

 

创建反向键索引:

CREATE INDEX 索引名 ON 表名 (列名) reverse

TABLESPACE 表空间名;


 

 

 

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn