I found an article speak about MySQL performance tips, and here is one of their tips:
MySQL performance tip No. 7: Watch out for pagination queries
On the query side, instead of using LIMIT with offset, you can select one more row than you need, and when the user clicks the "next page" link, you can designate that final row as the starting point for the next set of results. For example, if the user viewed a page with rows 101 through 120, you would select row 121 as well; to render the next page, you'd query the server for rows greater than or equal to 121, limit 21.
My Question is: Do this really help in pagination queries?