标签: java jpa join jpa-2.0
首先,对不起我的英语。
我想用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
提前感谢。
答案 0 :(得分:0)
JPQL不支持。 HQL(Hibernate JPQL实现)虽然有with个关键字。
with