PostgreSql 分页limit
Posted 一只猫的旅行
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PostgreSql 分页limit相关的知识,希望对你有一定的参考价值。
摘录自:http://jingyan.baidu.com/article/a17d528538119b8098c8f2ca.html
语法:
select * from persons limit A offset B;
解释:
A就是你需要多少行;
B就是查询的起点位置。
A B是bigint类型的值
示例:
select * from persons limit 5 offset 0 ;
意思是,起点0开始查询,返回5条数据。
以上是关于PostgreSql 分页limit的主要内容,如果未能解决你的问题,请参考以下文章