1、創建單一索引
create index 索引名稱 on 表名(列名);
2、創建復合索引
create index 索引名稱 on 表名(列名1,列名2);
3、刪除索引
drop index 索引名稱;
4、查詢表的索引
select * from all_indexes where table_name = '表名稱';
5、查詢表的索引列
select* from all_ind_columns where table_name = '表名稱';