Chcesz sprawdzić dokumentację dotyczącą aktualizacji.
http://www.mongodb. org/display/DOCS/aktualizacja
Twój kod może wyglądać tak:db.tbl.update( { c:{$ne:0}}, { $set: { a : b } } );
Jeśli chcesz odświeżyć zaawansowane zapytania (np. używając $ne
), a następnie sprawdź tutaj:
http://www.mongodb.org /display/DOCS/Zaawansowane+zapytania
EDYCJA:
Wygląda na to, że nie możesz zaktualizować danych z tego samego dokumentu.
MongoDB:Aktualizacja dokumentów przy użyciu danych z tego samego dokumentu
EDIT 2 (rozwiązanie z redukcją mapy) :
var c = new Mongo();
var db = c.getDB('db')
var s = db.getCollection('s')
s.drop();
s.save({z:1,q:5});
s.save({z:11,q:55});
db.runCommand({
mapreduce:'s',
map:function(){
var i = this._id; //we will emit with a unique key. _id in this case
this._id=undefined; //strange things happen with merge if you leave the id in
//update your document with access to all fields!
this.z=this.q;
emit(i,this);
},
query:{z:1}, //apply to only certain documents
out:{merge:'s'} //results get merged (overwrite themselves in collection)
});
//now take a look
s.find();