LIMIT 3,1) code example
Example 1: mysql limit
SELECT * FROM `members` LIMIT 1, 2;
Example 2: sql limit to 5 results
SELECT expressions
FROM tables
[WHERE conditions]
[ORDER BY expression [ ASC | DESC ]]
LIMIT number_rows [ OFFSET offset_value ];