example: /* 创建一般索引 */ create index index_name on table_name(column_name) tablespace tablespace_name; /* 创建位图索引 */ create bitmap index index_name on table_name(column_name1,column_name2) tablespace tablespace_name; /* 索引中不能用 pctused*/ create [bitmap] index index_name on table_name(column_name) tables