赞
踩
oracle中有5种索引方式:唯一索引,组合索引,方向索引,位图索引和基于函数的索引,这里主要就是最常用的几种创建索引的语法总结一下:
一、创建索引的标准语法
create index 索引名 on 表名(id) tablespace 表空间名
删除索引
drop index id_sid_kid
for eg:
create index id_sid_kid on crm.crm_stock(id) tablespace crm
二、创建唯一索引
create unique index 索引名 on 表名(id) tablespace 表空间名
for eg:
create unique index idx_stock_id on crm.crm_stock(id) tablespace crm
三、创建组合索引
create index 索引名 on 表名(id) tablespace 表空间名
for eg:
create index id_sid_kid on crm.crm_stock(id,sid,kid) tablespace crm
最后创建完成以后怎么查询创建成功呢?
根据索引名查询引用的字段
select * from user_ind_columns where index_name='id_sid_kid '
根据表名查询一张表的索引
select * from user_idnex where index_table='crm.crm_stock'
最后说说使用索引的优缺点:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。