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.
虽然我使用一些 JOINS 和按条件分组从 sqlite3 获取数据,但它需要更多时间。
该表有 30000 条记录
是否有任何优化方法可以从 SQlite 获取大量垃圾数据?
您可以限制 sqlite 仅返回前 n 个结果并偏移 m 以在用户向下滚动时获取后面的条目: SELECT someColumn ORDER BY someOtherColumn LIMIT n OFFSET m
这会更有效率。我应该详细说明吗?