How would you get the n to the m entries in a MySQL query ? I know limit can return the first m, but what about excluding the first n?
SELECT foo FROM table LIMIT 5, 10 will give you back the lines 6 to 15.
thanks man