我想以块(使用select
查询)获取数据,例如首次尝试从1到50条记录,第二次尝试从51到100条记录。
答案 0 :(得分:4)
使用LIMIT
和OFFSET
。在跳过前50个后,以下查询返回50条记录,因此返回记录51-150。
SELECT fname, lname
FROM students
ORDER BY ssn
LIMIT 100 OFFSET 50;
https://www.postgresql.org/docs/current/static/queries-limit.html