oracle 字符串怎么建立索引
发布网友
发布时间:2022-04-23 04:31
我来回答
共1个回答
热心网友
时间:2022-04-26 23:26
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