gpt4 book ai didi

java - 如何在 JPQL 中通过查询计算一个组返回的所有组?

转载 作者:行者123 更新时间:2023-12-05 07:54:59 26 4
gpt4 key购买 nike

如果我有一个分组查询

Select e.field1, e.field2...
from Entity w
group by e.field1, e.field2...

如何计算不使用 NativeQuery 的行数?我需要做这样的事情:

select count(*) from
(Select e.field1, e.field2...
from Entity w
group by e.field1, e.field2...)

JPQL 有什么办法吗?

最佳答案

在 oracle 中你可以使用这个 hql

Select sum(count(*) - count(*) + 1)
from Entity e
group by e.field1, e.field2...

但在 postgres 中不起作用

关于java - 如何在 JPQL 中通过查询计算一个组返回的所有组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30572048/

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