Is there any simple way to implement pagination in sybase? In postgres there are limit and offset in mysql there is limit X,Y. What about sybase? There is top clausure to li
Sybase SQL Anywhere example, rows per page:10, offset:1000.
SELECT top 10 start at 1001 * FROM employee order by employeeid
Note: You need to specify the order by column.
order by