informix如何创建函数索引,可以使用函数来创建联合索引吗?
本帖最后由 wwmstone 于 2012-09-21 00:11 编辑例:
表结构:
create table tab1(
a char(10),
b char(1),
c char(10)
);
现要查询语句是
select * from tab1 where a ='120920' and b = '1';
现在这个表的数据量很大,想创建索引来提升效率,应该如何创建。 回复 1# wwmstone
a这样的无法直接索引,或者能用函数索引。。或者使用b的索引。。 写一个函数返回 a 的结果(如:TL_GetStr以a列作为参数)
然后建立函数索引
create index "informix".idx_tab11 on "informix".tab1("informix".TL_GetStr(a)) using btree ;
页:
[1]