随机数更新字段内容


随机数更新字段内容

把name字段内容为Guest的改成Guest+4位随机数

1
2
3
4
5
db.robots.find({name:"Guest"}).forEach(
function(item){
db.robots.update({"_id":item._id},{$set:{name:"Guest" + Math.floor(Math.random() * 10000 + 10000)%10000}})
}
)