最近,我需要在我的项目中使用JPA。 但是,我遇到了一些困难。 JPA似乎比我想象的更难。 所以,我在这里发布我的问题,希望有些人可以帮助我。
有两个表操作和分析,sql如下:
select op_id from operation where flag = 1
union
select an_id from analysis where on_type = "processed";
op_id
和an_id
两个列名实际上意思相同。
任何人都可以帮我写一个JPA版本吗? 我非常感激。 非常感谢你。
答案 0 :(得分:1)
JPQL不支持联盟。
您有四种选择:
Set
来过滤重复)请在此处查看this question。