Select behavior
I have had a strange behavior when i tried to run a statement against an Oracle database 10g R2.
the statement is pretty simple and Col1 is Number(8);
select * from toto A where A.col1=1;
No row returned
The other statement is :
select * from toto A where to_number(A.col1)=1;
And it returns rows.
For additional information, the tabe is partionned by range on col1.
Regds,
AB