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.
例如:每页 50 行
获取page4时如何获取page2的起始偏移量?
如果您从数据库中获取,请将过滤器作为查询本身的一部分,并让数据库软件为您计算。例如
SELECT * from myrows WHERE [condition] LIMIT 50 OFFSET 200
将为您提供过滤后的记录 200..249,即第 5 页的内容。