Oracle date “Between” Query
Judging from your output it looks like you have defined START_DATE as a timestamp. If it were a regular date Oracle would be able to handle the implicit conversion. But as it isn’t you need to explicitly cast those strings to be dates. SQL> alter session set nls_date_format=”dd-mon-yyyy hh24:mi:ss” 2 / Session altered. SQL> SQL> … Read more