2017-04-13 2 views

Antwort

1

Sie tun können, dass mit einem Skript in Befehl Linie (zum Beispiel) :

db.{collection}.find({"name":"Rajeev"}).forEach(function(document) { 
    delete document['']; 
    db.{collection}.save(document); 
}); 
Verwandte Themen