I have two tables (persistent entity class in Java) with many-to-one bidirectional relation - User(has many invitations) and Invitation(has invited user id and event name). Im trying to select all the users who has no invitations to specific event (a :event_id parameter). It is ease on SQL, but cannot convert it to JPQL:
SELECT u.id FROM User u
LEFT OUTER JOIN Invitation i ON u.id = i.invited_id AND i.event_id = :event_id
WHERE i.invited_id IS null
I got error message when using second JOIN condition (i.event_id = :event_id). Sure it could be achieved with sub select or NOT IN clause, but I want it to be fast operation with JOIN. Please help