I have a timestamp field and I just want to compare the date part of it in my query in Oracle
How do I do that,
SELECT * FROM Table1 WHERE date(field
to_date format worked for me. Please consider the date formats: MON-, MM, ., -.
to_date
MON-
MM
.
-
t.start_date >= to_date('14.11.2016 04:01:39', 'DD.MM.YYYY HH24:MI:SS') t.start_date <=to_date('14.11.2016 04:10:07', 'DD.MM.YYYY HH24:MI:SS')