请原谅我再次讨论这个问题,但我需要对此进行 JPA 查询:
select username, count(*)
from Records
group by username
order by count(*) desc
limit 1
我想过这样的事情:
select r.username,count(*) from Records r order by r.username desc
然后打电话
getResultList().get(0)
但我只能写:
select r from Records r order by r.username desc
在这种情况下,我不知道如何获得我需要的东西。有谁有想法吗?