Đây là truy vấn của bạn với where
mệnh đề:
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 không đảm bảo thứ tự xử lý các mệnh đề trong where
. Vì vậy, value <> '0'
không được đảm bảo để chạy trước điều kiện cuối cùng. Đây là một vấn đề lớn trên SQL Server. Một giải pháp là sử dụng case
tuyên bố:
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;
Khá xấu, nhưng nó có thể giải quyết vấn đề của bạn.