gpt4 book ai didi

java - 在 hibernate 条件中使用 sum

转载 作者:行者123 更新时间:2023-12-02 10:58:10 24 4
gpt4 key购买 nike

如何在 hibernate 条件中表达此查询?

select SUM (tabla2.valor1) 
from tabla1 INNER JOIN
tabla2 ON tabla1.ID = tabla2.ID
where tabla1.ID = 1

谢谢!

最佳答案

您可以使用 Projections ,例如

getSessionFactory() //this is the session factory, initialized with->  new Configuration().configure().buildSessionFactory()
.openSession()
.createCriteria(tabla1.class)
.createAlias("tabla2.id", "tab2", JoinType.INNER_JOIN)
.setProjection(Projections.sum("tab2.valor1"));

关于java - 在 hibernate 条件中使用 sum,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51553941/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com