How do I move within a record set so, for example, a loop will start at record 10 instead of the first record?
limit your query; select * from table limit 10, 20
what do the 10 and 20 represent?
Have people ever mentioned there is actually a manual for mysql?