MySQL LIMIT / OFFSET:获取除第一个X之外的所有记录

前端之家收集整理的这篇文章主要介绍了MySQL LIMIT / OFFSET:获取除第一个X之外的所有记录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想查询50号及以上的所有记录.因此,我不想做LIMIT 49,99999这样的事情,而是想知道是否有正式方式.

最佳答案
不,对不起从MySQL Documentation

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:

SELECT * FROM tbl LIMIT 95,18446744073709551615;
原文链接:https://www.f2er.com/mysql/433861.html

猜你在找的MySQL相关文章