Вопрос

Have a named query written like this

select u from User u where u.creationdate < DATE_SUB(CURDATE(),INTERVAL :upperDate DAY) and status=:status and reminder_counter =:counter

But I get a Syntax error parsing.

Any ideas`?

P

Это было полезно?

Решение

The function DATE_SUB you are using is MySQL specific, resulting in parsing error.

  • Create a named native query to use DATE_SUB function.
  • Else, can calculate the duration explicitly & then setting the parameter.
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top