mysql 中没有 LIMIT 的 OFFSET

OFFSET without LIMIT in mysql

有没有办法在mysql中使用不带LIMIT的OFFSET?我尝试了很多方法很多次。我也搜了很多

不,没有办法。您需要提供 LIMIT。

然后 manual 说:

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.