mongodb多个条件查询in,日期查询等常用实例

时间:2022-05-09 02:54:40

in

db.inventory.find( { qty: { $in: [ 5, 15 ] } } )

日期查询

db.books.find({"time":{"$gt":ISODate("2019-06-29T00:00:00Z")}},{"time":1})
查询时间大于6-29,结果显示一列

 

db.getCollection('books').find({"pubtime" : {"$gte" : ISODate("2019-07-04T00:00:00.000Z"), "$lt":ISODate("2019-07-05T00:00:00.000Z")}}).count()