2019-11-02mongodb查询当前记录的上一条和下一条

思路:根据当前记录的id查询前后记录。
##mongodb实现方法:
mongo可以通过时间或者通过id来判断上一条记录或者下一条记录:
#通过记录的_id
上一条记录

 db.数据库名称.find({ '_id': { '$lt': ids } }).sort({_id: -1}).limit(1)

下一条记录

db.数据库名称.find({ '_id': { '$gt': ids } }).sort({_id: 1}).limit(1)

##通过时间字段来查询:

上一条记录

 db.数据库名称.find({ 'created': { '$lt': created } }).sort({_id: -1}).limit(1)

下一条记录

db.数据库名称.find({ 'created': { '$gt': created } }).sort({_id: 1}).limit(1)

#mysql实现方法:
mysql查询,网上有很多方法,通常我们用如下方法:

查询上一条记录的SQL语句(如果有其他的查询条件记得加上other_conditions以免出现不必要的错误):

select * from table_a 
    where id = 
        (select id from 
            table_a where id < {$id} [and other_conditions] 
            order by id desc limit 1
        ) 
   [and other_conditions];

查询下一条记录的SQL语句(如果有其他的查询条件记得加上other_conditions以免出现不必要的错误):

select * from table_a 
    where id = 
        (select id from table_a 
            where id > {$id} [and other_conditions] 
            order by id asc limit 1
        ) 
    [and other_conditions];
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值