mysql怎么查询一条记录的前一条记录和后一条记录

2024-12-17 10:07:10
推荐回答(4个)
回答1:

这个很简单。你在查询的时候要查3次,第一次查询的是当前的记录,第2,3次查询的分别是上一条和下一条记录。

所以说应该是3条语句。

select * from news where id=ID

select top 1 * from news where id > ID and classid=classid order by id asc

select top 1 * from news where id < ID and classid=classid order by id desc

你可能要先把当前的记录查出来,取出这条记录的分类ID,然后才能写出下面的2条查询语句。

mysql 与 msql一样,都用Transact-SQL语句查询!

回答2:

上一条:select * from 表 where 数据id<@当前显示数据id order by 数据_id asc) limit 1
下一条:select * from 表 where 数据id>@当前显示数据id order by 数据_id desc) limit 1

mysql 里面不支持 select top

回答3:

select * from 表名 where id = (记录id +1) or id = (记录id -1);

回答4:

数据表中设置ID项啊,这条记录的ID的下一个ID不就是么