a) 唯一索引
b)一般索引
create unique index 索引名 on 表名(字段名)
ok
create unique index idx_empname on employee(empname)
create index 索引名 on 表名(字段名)
ok
create index idx_address on employee(address);
我們還可以為兩多個字段建立索引
create unique index idx_test on employee(field
這樣
還可以指定索引排序
create index idx_test employee(field
如果在我們的查詢條件使用了函數
可以用建立函數索引的方式
例如:
select * from product where nvl(price
這裡
ok
create index index_price on product(nvl(price
drop index 索引名
drop index idx_empname;
唯一索引能極大的提高查詢速度
一般索引
經常插入
可以在order by的字段
比如:
select * from table
left join table
where t
order by t
這裡
From:http://tw.wingwit.com/Article/program/Oracle/201311/18830.html