I´m trying to get accustomed to JPQL, but i´m already stuck. How does this:
SELECT * FROM Table_a INNER JOIN Table_b USING (Table_bID) Where Table_b.Column_a LIKE 'somestring'
translate to JPQL ? I would very much appreciate any help.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For this to work, you must have a relationship (I assume it is a ManyToOne, since there seems to be several rows in table A which have the ID of table B) from EntityMappedToTableA to EntityMappedToTableB :