Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法从数据库中获取最近更新的记录?
这些记录没有任何日期信息,我不想更改表结构。该 ID 也无法使用,因为这些是已编辑的记录,而不是新添加的。
我更喜欢lastUpdateted在域类中添加字段,然后使用 GORM 的 beforeUpdate 方法,然后使用order by lastUpdated限制查询。
lastUpdateted
order by lastUpdated
另请参阅“如何在 HQL 中进行限制查询? ”
澄清问题!!!有很多方法可以做到这一点: