在SQL中创建反转索引SQL> create unique index i1_t1 ON t1(c1) 2 REVERSE pctfree 30 3 storage(initial 200k next 200k 4 pctincrease 0 maxextents 50) 5 tablespace indx; SQL> create unique index i2_t1 ON t1(c2); SQL> alter index i2_t1 REBUILD REVERSE; 这些索引操作是在Oracle数据库中基本的反转索引创建原理示例。