문제

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