In PostgreSQL there is the Limit and Offset keywords which will allow very easy pagination of result sets.
Limit
Offset
What is the equivalent syntax f
select top (@TakeCount) * --FETCH NEXT from( Select ROW_NUMBER() OVER (order by StartDate) AS rowid,* From YourTable )A where Rowid>@SkipCount --OFFSET