LIMIT mysql query results
In Mysql LIMITÂ is used to limit query results
For example
SELECT * FROM Employees LIMIT 50
will output first 50 records from employee table
We can also specify the starting record no. like
SELECT * FROM Employees LIMIT 10,50
will output records starting from record no. 11 to 50