如何使用pl/sql 给一个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
温馨提示:答案为网友推荐,仅供参考
相似回答