Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
まず第一に、私の英語で申し訳ありません。
このように、JPAでクエリを作成したい
select * from table1 t1 inner join table2 t2 on t1.id = t2.id and t2.field = 1
and t2.field = 1" " の内部join(WHERE節なし)を行う方法
and t2.field = 1
join
WHERE
前もって感謝します。
JPQL はそれをサポートしていません。ただし、HQL (Hibernate JPQL 実装) にはwithキーワードがあります。
with