mongodb和mysql查询当前记录的上一条和下一条

7次阅读

共计 739 个字符,预计需要花费 2 分钟才能阅读完成。

思路:根据当前记录的 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