Published in: SQL
A simple SELECT * FROM PRODUCTS where datelastmodified = todate('25.07.07') doesn't work though date_lastmodified is not a dts.
SELECT * FROM PRODUCTS WHERE to_date(date_lastmodified) = to_date('25.07.07', 'DD.MM.YY');
You need to login to post a comment.
