oracle数据库如何重建索引 oracle中怎么建立和使用索引
oracle数据库如何重建索引
用rebuile语句即可啊
Alter indexindex_name rebuild
Alter indexindex_name rebuild online也可以把索引删除了重新建立
drop index indexindex_name
create index indexindex_name on table_name(col_name)
oracle中怎么建立和使用索引
在程序中,oracle优化器在认为索引效率更高时,会自动调用索引。
也可以显式调用索引:
select
/* index(A,索引名)*/
*
from
A where b=‘’,c=
oracle 字符串怎么建立索引
create index index_name on table_name(column_name)
只要你查询使用到建了索引的字段,一般都会用到索引。
--创建表
create table aaa
(
a number,
b number
)
--创建索引
create index idx_a on aaa (a)
--使用索引
select * from aaa where a=1
这句查询就会使用索引 idx_a