mongodb常用查询操作

javascript操作

打印每一个查询结果

var cursor = db.collection.find().sort({_id:-1}).limit(10000);
while(cursor.hasNext()){
    printjsononeline(cursor.next());
}



判断输出mongodb查询后的数据中是否存在某key

var cursor = db.some_collection.find();
cursor.forEach(function(element){
# 此处判断element中是否存在some_key的键
  if(!element.some_key){
    console.log(some_key)
  }
})

你可能感兴趣的:(mongodb常用查询操作)