在 MongoDB 中,您可以使用 $gt
、$lt
、$gte
、$lte
操作符来查询时间条件。这些操作符分别表示大于、小于、大于等于和小于等于。以下是一些示例:
db.collection.find({ timestamp: { $gt: new Date("2022-01-01T00:00:00Z") } })
db.collection.find({ timestamp: { $lt: new Date("2022-01-01T00:00:00Z") } })
db.collection.find({ timestamp: { $gte: new Date("2022-01-01T00:00:00Z"), $lte: new Date("2022-01-31T23:59:59Z") } })
请注意,上述示例中的 timestamp
是指代表时间的字段名,您需要将其替换为您自己的字段名。new Date()
用于创建一个表示特定时间的 JavaScript Date 对象。