gpt4 book ai didi

mysql - 获取具有限制的表列中特定行值之后的记录

转载 作者:行者123 更新时间:2023-11-29 14:11:59 25 4
gpt4 key购买 nike

如何编写一条sql来告诉mysql从如下表中的5 limit 5开始获取接下来的5条记录。

srt_id (this is not the auto increment column even though the value is incremented)
------
1
2
3
4
5
6
7
8
9
10

所以在这里,我想从 6 开始,然后在 10 结束。我什至可能想从 6 或 7 或 8 开始。我不能使用偏移 5 或类似的东西。我必须从该行开始并获取其余的。你能帮忙吗?

所以,我尝试了:

select * from table where srt_id = 5 limit 5; //Begin at 5 and the next 5 records

最佳答案

select * from table where srt_id >= 5 order by srt_id limit 5;

关于mysql - 获取具有限制的表列中特定行值之后的记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13347437/

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