I have a simple question regrading MySQL. Is it possible to return the rows between row ‘x’ and row ‘y’? It’s sort of hard to explain – for the sake of an example: Return rows 6 through 10, excluding rows 1-5 and rows 11+. Thanks! ;D
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use LIMIT. Remember to combine it with ORDER BY for the results to make any sense.
(Start from row 6, take 5 rows)