Hola,
Tengo el siguiente query:
Select t1.cam1, t2cam2, t2.time_stamp,.. from tabla1 t1, tabla2 t2 where ... And t1.campo1 > (sysdate – cast(t2.time_stamp as date))
No me funciona, me arroja el siguiente error:
com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Unknown column 'sysdate' in 'where clause'.
Con una base de datos oracle no hay problema, solo con mysql no funciona.
Gracias