Home > Database > Mysql Tutorial > oracle 创建索引

oracle 创建索引

WBOY
Release: 2016-06-07 15:07:40
Original
1277 people have browsed it

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

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

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

创建Oracle索引的标准语法:

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

TABLESPACE 表空间名;
Copy after login


创建唯一索引:

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

TABLESPACE 表空间名;
Copy after login

 

创建组合索引:

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

TABLESPACE 表空间名;
Copy after login

 

创建反向键索引:

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

TABLESPACE 表空间名;
Copy after login


 

 

 

 

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template