I have a query that one of your filters is a date, is it possible to filter in Oracle with something like this?
SELECT * FROM tabela WHERE campoData = '2014-02-10 15:56:00.000'
Or do we always have to convert to String as below?
SELECT * FROM tabela WHERE campoData = TO_DATE('10/02/2014 15:56:00','DD/MM/YYYY HH24:mi:ss')
I'm using Oracle 10g.