from a table A i have taken rows from 0-15 using limit.
Now again I require all the records from 15 onwards till the last row such that I do not know the total number of rows.
How to do this?Using offset 15 doesnt help
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 both parameters for
LIMIT. For the second parameter, use an unusually large number that is at least larger than the number of records in the table. From the manual