gpt4 book ai didi

java - DAO Java 中的子查询

转载 作者:行者123 更新时间:2023-11-30 07:10:10 25 4
gpt4 key购买 nike

我有一个包含子查询的选择,我想用 Java 获取它的结果,但到目前为止我只处理过简单的查询。所以也许你可以给我一些关于如何做到这一点的想法。我已经映射了两个表,现在我正在使用 DAO 从子查询中检索结果。

这是我的 DAO 中的函数:

public List<Object> getAllEntries(){
Query query = emJAGS.createNativeQuery("select nr, responsible, (select count(*) from table1 where idNr = cnt and month <= '2016/09' and month >= '2011/01') CNT "
+ "from table2 where flag = 1 and (select count(*) from table1 where idNr = cnt and month <= '2016/09' and month >= '2011/01') > 0");
}

我不知道如何进一步进行以获得结果。提前致谢!

最佳答案

列表中的对象实际上是与 nr 返回的类型相关的对象数组。 , responsiblecount

如果您创建与此格式相关的 POJO,您可以使用此 method相反

关于java - DAO Java 中的子查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39363288/

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