your table record : 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
SELECT * FROM 'YourTable' Limit 10
- It will select 10 rows of record from the table.
Result : 1,2,3,4,5,6,7,8,9,10
SELECT * FROM 'YourTable' LIMIT 0, 3
- It will return 3 rows of record and start from index 0Result : 1,2,3
SELECT * FROM 'YourTable' LIMIT 2, 3
- It will return 3 rows of record and start from index 2