码迷,mamicode.com
首页 > 数据库 > 详细

mongodb update limit更新指定数量的记录

时间:2014-10-22 12:49:04      阅读:1436      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   sp   div   on   cti   

1、

db.user.find({status:0,country:"CN",group:"default"}).limit(50).forEach(function(doc){db.user.update({_id:doc._id},{$set:{group:"free"}})})

 

2、

db.user.find({status:0,country:"CN",group:"default"}).limit(50).forEach(
    function (e) {
        e.group= "free";
        db.collection.save(e);
    }
);

 

3、

user.in(_id: user.where(group: ‘default‘).limit(50).only(:_id).to_a.map{ |n| n.id }).update_all(group: ‘free‘)

 

mongodb update limit更新指定数量的记录

标签:style   blog   color   io   for   sp   div   on   cti   

原文地址:http://www.cnblogs.com/ference/p/4042625.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!