我想选择count < nowtimestamp - update_time
的行。
在mysql中,这很简单:
select * from review
where nowtimestamp - update_time > count;
update_time
,count
是一个表格字段。那么,mongodb如何实现这一目标呢?我使用的是mongoengine ORM。
答案 0 :(得分:0)
db.review.find( { update_time: { $lt: nowtimestamp - count } } )
这是mongodb中lt的正确语法
只是让它适应你的ORM