当前位置: 代码迷 >> Informix >> informix 怎么创建函数联合索引
  详细解决方案

informix 怎么创建函数联合索引

热度:1087   发布时间:2016-05-05 08:56:38.0
informix 如何创建函数联合索引
例:
有表结构如下:
create table tab1(
a char(10),
b char(1),
c char(10)
);
程序中查询语句为 select * from tab1 where a[3,8] = '120921' and b = '1';
tab1表数据量大,所以想创建索引来提升效率。应该如何创建?

------解决方案--------------------
查查
Using a Function as an Index Key
  相关解决方案