SELECT column_name FROM table_name LIMIT 15, 100.
The first number in LIMIT is the offset, the second is the number.
Tag: limit
How to display top 40 rows?
In MySql, top 40 rows are displayed by using this following query:
SELECT * FROM
LIMIT 0,50