ps: methods are NOT equivalent. They are if you have "continous" ids.
But, e.g., you remove some rows. You end up with 1,2,3,4,5,6,7,8,9,10,11,13,15,17,20.
Second method (i.e. calc max and go back by ten) leaves you with 20,17,15,13,11,10 (and takes two queries)
First method (i.e. orderby + limitby) correctly returns 20,17,15,13,11,10,9,8,7,6.