tp5查询当前数据的上一条和下一条的记录

查询当前数据的上一条和下一条数据,在MySQL里通过 ”order by“实现,例如:
上一条:select * from aft_article where id < 10 order by id desc limit 1
下一条:select * from aft_article where id > 10 order by id limit 1
下面tp5实现查询当前数据的上一条和下一条数据,首先要获取当前id,其实原理跟上面一样:
//获取当前id
$id = input('id');
        
//上一条数据
$prev = db('article')->where('id',"<",$id)->order("id desc")->find();
//下一条数据
$next = db('article')->where('id',">",$id)->order("id")->find();
 通过你给的id用orderby排序然后用limit拿去第一条,下一页就是正序,上一页就是倒序