Hi,
I'm currently looking to have a mysql query retrieve data and have and a start and limit.
So like, select * from table where x = x START AT ID X LIMIT X
thanks :)
Hi,
I'm currently looking to have a mysql query retrieve data and have and a start and limit.
So like, select * from table where x = x START AT ID X LIMIT X
thanks :)
SELECT * FROM `tableName` WHERE `colName`='someVal' LIMIT 0, 10
The first limit value is the starting record number. The second value is the number of records to query.