MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Umgekehrtes Array-Feld in MongoDB

db.loc.find().forEach(function (doc) {
    var loc = [ doc.location[1], doc.location[0] ]; 
    db.loc.update(doc, { $set: { location: loc } });
})