Sie möchten die Dokumentation auf Aktualisierung prüfen.
http://www.mongodb. org/display/DOCS/Updating
Ihr Code könnte so aussehen:db.tbl.update( { c:{$ne:0}}, { $set: { a : b } } );
Wenn Sie erweiterte Abfragen auffrischen müssen (z. B. mit $ne
), dann überprüfen Sie hier:
http://www.mongodb.org /display/DOCS/Advanced+Queries
BEARBEITEN:
Anscheinend können Sie nicht mit Daten aus demselben Dokument aktualisieren.
MongoDB:Aktualisieren von Dokumenten mit Daten aus demselben Dokument
EDIT 2 (Lösung mit Kartenreduzierung) :
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();