我有使用'RR'日期格式
创建基于函数的索引的问题注意:这只是场景,而不是我原来的SQL查询
create table chkdt(frdt date,todt date);
insert into chkdt(frdt,todt)values('01-jun-2015','01-sep-2015');
select frdt,todt from chkdt where to_date('01-may-1991','dd-mm-rrrr') between frdt and todt;
create index fbi_fmrdt on chkdt(to_date(frdt,'dd-mm-rr'));
ORA-01743:只有纯函数可以是索引
那么如何创建?
谢谢&问候 Ĵ@ YSH。