How to return the nth record from MySQL query?
Answers
Answered by
0
How to return the nth record from MySQL query
Answered by
0
says return one record starting at record n. Use the limit clause (add 'limit 3, 1' to the end of your query to only select the third row). for example "LIMIT 10, 5", it will skip the number of records indicated by the first number and then show the number of records indicated by the second number.
Similar questions