in reply to Re: Problem passing date to SQL
in thread Problem passing date to SQL

Although a "WHERE date_column LIKE '...'" clause CAN work in Oracle, it is incredibly poor practice. You can not depend on the date format in any particular environment, and any indexes on the date column will not be used.

Replies are listed 'Best First'.
Re^3: Problem passing date to SQL
by SimonPratt (Friar) on Aug 18, 2015 at 21:09 UTC

    Aah, that does work in Oracle? I stand corrected :)