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

link|improve this question
Answer is No. if you need more than one condition use NativeQuery, instead of NamedQuery in your java code. – user1113861 Jan 20 at 14:55
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.