Quick question about MySQL. I have a table with about 7000+ entries and I would like to select for example from OFFSET 40 until OFFSET 60. So it would bring back 20 entries. I’m pretty new to SQL and know of the OFFSET command, just not sure how to do this.
Thanks,
Kris
You might want to use
LIMIT. Its arguments are an offset and a limit on the number of posts to retrieve–in your case, the following: