Ok say I have called up 14 rows.....
Say I want to limit them using LIMIT by 1st 2nd third etc.
Limit 1 -- Gets me the first row
Limit 1, 1 -- would that get me the second row?????
would Limit 2, 1 get me the third???
BTW I am using MYsql 3.23
Why don't you try and see?
or read the manaul and see http://www.mysql.com/doc/S/E/SELECT.html
limit a,b
a: beginning row b: how many rows
limit 2,5 means 2,3,4,5,6,7 rows (5 rows)
2,3,4,5,6,7 != 5 rows 🙂