I have the following JPQL request;
@Query(value = \"select req_t \" +
\"from TransactionRelation tr \" +
\"inner join tr.requestTransaction r
It happened to me, I had a ' ; ' char at the end of my query, copy pasted from my database querying tool :
@Query(value = " DELETE FROM reunion WHERE id = ?1; ", nativeQuery = true)
You have no whitespace between lines
"and req_t.receiver.id=?2 and req_t.requestType in ?3" +
"and NOT EXISTS
also check that the ?3 param is not empty list