To jest twoje zapytanie z where
klauzula:
select value1, to_date(value1,'DD.MM.YYYY')
from variableindex
where value1 is not null and
value1 <> '0' and
creation_time_ > to_timestamp('20140307', 'YYYYMMDD') and
to_date(value1 'DD.MM.YYYY') < to_date('20140301', 'YYYYMMDD')
order by 2;
Oracle nie gwarantuje kolejności przetwarzania klauzul w where
. A więc value <> '0'
nie ma gwarancji, że zostanie uruchomiony przed ostatnim warunkiem. To jest duży problem na SQL Server. Jednym z rozwiązań jest użycie case
oświadczenie:
select value1,to_date(value1, 'DD.MM.YYYY')
from variableindex
where value1 is not null and
value1 <> '0' and
creation_time_ > to_timestamp('20140307', 'YYYYMMDD') and
(case when value <> '0' then to_date(value1, 'DD.MM.YYYY') end) <
to_date('20140301', 'YYYYMMDD')
order by 2;
Raczej brzydkie, ale może to tylko rozwiązać Twój problem.