我必须使用HQL从两个不相关的表中获取值。
HQL1= from AbstractTea x where x.site in (:currentSearchSite) and
x.status = :status and 1=1
HQL2= from AbstractCoffee x where x.site in (:currentSearchSite) and
x.status = :status and 1=1
我必须结合两个查询的结果集,使其在分页中工作
我使用了UNION ALL,但是没有用到
我使用Scrollable结果进行分页,所以我尝试分别运行查询。
ScrollableResults results = query.scroll();
ScrollableResults results2 = query2.scroll();
我不知道如何通过结合两个结果来获得分页工作 使用ScrollableResults