gpt4 book ai didi

java - Hibernate max() 查询

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

我需要选择一个记录,其中 extId == 我给出的参数,并且从这些记录中我想要最新的日期(createDate 属性)。我正在尝试这个:

select r from Record r where r.extId=:eid and r.createDate=(select max(r.createDate) from r where r.id=r.id)

仅返回最新记录。请帮助我。

最佳答案

您可以尝试这个查询,它对我有用。

from Record r where r.extId=:eid and r.createDate IN (select max(r2.createDate) from Recordr2)

关于java - Hibernate max() 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12805090/

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