Computer Science, asked by ayesha4344, 1 year ago

How to return the nth record from MySQL query?

Answers

Answered by aisha764412
0

How to return the nth record from MySQL query

Answered by Anonymous
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