查询最远的时间戳
Querying for farthest timestamp
如何在我的 mongodb
数据库中搜索最远 timestamp
的文档? Timestamp
是日期,ISODate
格式与否。
如果您使用 ISODate 格式,您可以在聚合查询中使用 $max
来获取最早的日期。
参考http://docs.mongodb.org/manual/reference/operator/aggregation/max/
如何在我的 mongodb
数据库中搜索最远 timestamp
的文档? Timestamp
是日期,ISODate
格式与否。
如果您使用 ISODate 格式,您可以在聚合查询中使用 $max
来获取最早的日期。
参考http://docs.mongodb.org/manual/reference/operator/aggregation/max/