gpt4 book ai didi

mysql - 第 n 行之后的所有行?

转载 作者:行者123 更新时间:2023-11-29 01:08:22 27 4
gpt4 key购买 nike

如果我指定一个数字,比如说 5,什么查询会给我第 5 行之后的所有行?喜欢,

SELECT * FROM table WHERE 1=1;

只是我希望它排除前 5 名。谢谢。

最佳答案

使用非常大的限制作为第二个参数。

select * from myTable limit 5,18446744073709551615;

来自 MySQL Docs :

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;

顺便说一句:您不需要 WHERE 1=1。它不会为查询添加任何值,只会造成困惑。

关于mysql - 第 n 行之后的所有行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1925587/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com