gpt4 book ai didi

grails - 如何检索最新创建的数据库条目?

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

我有以下类,需要手动增加 nextId 字段。

class SomeIdClass {

Family family
Integer nextId = 0
long timeCreated = new Date().time }

到目前为止,我一直在尝试检索最新的数据库条目来增加它,但我只是没有任何运气。或者我只是以完全错误的方式去做这件事?

谢谢

ps:这是我尝试过的,但获得了 Package.SomeId 对象的列表

 def si = SomeId.executeQuery(" from SomeId where nextId =  (select max( nextId ) from SomeId) ")

最佳答案

我的两分钱返回 Grails 中的最后一行:

DomainClass.find("from DomainClass order by id desc")

关于grails - 如何检索最新创建的数据库条目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5084245/

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