Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望这是一个非常简单的答案:
我可以用
LIMIT 2,4
给我记录 3,4,5,6
我怎样才能得到从 3 开始的所有记录?如果我使用
LIMIT 2
它只会给我前两行吗?正确的?
要检索从某个偏移量到结果集末尾的所有行,您可以为第二个参数使用一些较大的数字。此语句检索从第 3 行到最后一行的所有行:
SELECT * FROM tbl LIMIT 2,18446744073709551615;
取自 MySQL 手册
SQLFiddle 演示