findAndMondify中有个query参数,有个update标签,
可是如何限制搜索数量
也就是把下面两个语句合一
db.xxx.find({name:"xxx",age:3}).limit(10)
db.xxx.update({name:"xxx"},{$set:{age:5}},false,true)
曾经蜡笔没有小新2017-05-17 10:05:22
findAndModify
方法用于将查找和修改放在一个原子操作中,它一次只能操作一条数据。
可以参考文档了解具体用法:
sort document Optional. Determines which document the operation modifies if the query selects multiple documents. findAndModify() modifies the first document in the sort order specified by this argument.