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.
我正在使用 SugarORM 数据库。我正在通过调用来提取记录
String action = "recordId DESC"; db_record_listing = Select.from(Records_rejected.class).orderBy(action).list();
但是,这样的数据库会随着时间的推移而积累,我想显示最近的 100 条记录。
是否可以列出最近添加的 100 条记录?谢谢!
您可以简单地使用LIMIT来限制返回的项目数。
LIMIT
对于 SugarORM,您可以添加另一个链:
Select.from(...).orderBy(...).limit("100").list();