在postgresql中以块的形式检索数据

时间:2017-02-07 04:49:00

标签: database postgresql database-design

我想以块(使用select查询)获取数据,例如首次尝试从1到50条记录,第二次尝试从51到100条记录。

1 个答案:

答案 0 :(得分:4)

使用LIMITOFFSET。在跳过前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