Tachen,
es scheint wirklich keine bessere Möglichkeit zu geben. Siehe dazu auch folgenden Auszug aus der offiziellen MySQL-Dokumentation.
[...]
To retrieve all rows from a certain offset up to the end of the result set, you can use some large number for the second parameter. This statement retrieves all rows from the 96th row to the last:
mysql> SELECT * FROM table LIMIT 95,18446744073709551615;
[...]
Viele Grüße
David