替代JPQL中的UNION

时间:2015-04-15 13:17:53

标签: spring jpa union

我在下面查询从三个不同的表中返回代码和fcode。

select c.code,a.familycode as fcode from test1 a ,test2 c
where a.code=c.code order by c.code
union
select c.code,b.familycode as fcode from test3 b ,test2 c
where b.code=c.code order by c.code

由于JPA不支持UNION,我需要您的帮助才能在JPA存储库中实现@query。 我不想在这个实现中使用eclipselink。我在两个不同的查询中执行了上面的查询并合并。但是我的逻辑很难合并。

0 个答案:

没有答案