1. 首页
  2. 数据库
  3. 其它
  4. Oracle数据库中建立索引的基本方法讲解

Oracle数据库中建立索引的基本方法讲解

上传者: 2020-12-21 17:51:06上传 PDF文件 95.77KB 热度 13次
怎样建立最佳索引? 1、明确地创建索引 create index index_name on table_name(field_name) tablespace tablespace_name pctfree 5 initrans 2 maxtrans 255 storage ( minextents 1 maxextents 16382 pctincrease 0 ); 2、创建基于函数的索引 常用与UPPER、LOWER、TO_CHAR(date)等函数分类上,例: create index idx_func on emp(UPPER(ename)) tablespace table
用户评论