offset and limit

admin

Administrator
Staff member
In mysql you can specify the startposition of the result as the offset and limit as the number of rows to be returned. For example;

SELECT * FROM TABLE LIMIT $offset, $limit

How do I do it in MSSQL?

Thanks / Henrik
 
Back
Top