You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
graph TD
A[数据量?] -->|< 1万| B[用基于页面分页]
A -->|> 1万| C[必须用光标分页]
B --> D[SQL: ORDER BY id LIMIT 10 OFFSET 10]
C --> E[SQL: WHERE id > cursor ORDER BY id LIMIT 10]