使用PHP在mysql数据库中选择下一行

时间:2013-12-27 16:15:06

标签: php mysql

我正在运行一个选择SQL查询:

select * from table where sequence = '6' 

我希望能够获得下一行,但它可能不是序列7,因为这可能不存在。

如果下一行是序列9,我将如何选择它?

2 个答案:

答案 0 :(得分:7)

sequence排序并使用limit定义偏移量1

select * from your_table
where sequence >= 6
order by sequence
limit 1, 1

答案 1 :(得分:0)

我不知道这是否有帮助...

select * from table where sequence > '6' order by sequence ASC limit 0,1