我的表有两个字段
cols1 cols2  都是clob类型
我现在都单独建立了索引执行语句:select * from table where contains(cols1,'xxxx')>0 or  contains(cols2,'xxxx')>0;
1000W查询非常快   现在我想实现:
select * from table where contains(cols1||' '||cols2,'xxxx')>0;
这样执行是无法通过的,如果想实现这种查询效果。不知道该如何创建索引?