get records 10 - 20 SQL Server/MS code example
Example: how to get first 10 records of a table in mysql
SELECT *FROM yourTableName ORDER BY yourIdColumnName LIMIT 10;
SELECT *FROM yourTableName ORDER BY yourIdColumnName LIMIT 10;