java and dsl_java – 具有元组条件的QueryDSL和SubQuery

我试图在QueryDSL中编写一个查询来获取由其parentId分组的表中最旧的元素.

SQL等价物应该是:

SELECT a.* FROM child a

INNER JOIN

(

SELECT parentId, MAX(revision) FROM child GROUP BY parentId

) b

ON (

a.parentId = b.parentId AND a.revision = b.revision

)

现在在QueryDSL中,我坚持使用语法.

JPQLQuery subquery = JPAExpressions

.select(child.parent, child.revision.max())

.from(child)

.groupBy(child.parent);

HibernateQuery query = new HibernateQuery<>(session);

query.from(child)

.where(child.parent.eq(subquery.???).and(child.revision.eq(subquery.???))));

如何使用子查询编写此查询?

表格看起来像这样:

___parent___ (not used in this query, but exists)

parentId

P1 | *

P2 | *

P3 | *

___child___

parentId | revision

P1 | 1 | *

P1 | 2 | *

P1 | 3 | *

P2 | 2 | *

P2 | 3 | *

P3 | 1 | *

___result from child, the highest revision for each parentId___

P1 | 3 | *

P2 | 3 | *

P3 | 1 | *

到目前为止我尝试过的:

.where(JPAExpressions.select(child.parent,child.revision).eq(subquery));

-> org.hibernate.hql.internal.ast.QuerySyntaxException: unexpected end of subtree

和许多语法错误……

我现在使用脏循环,因为我还没有找到解决方案.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值