As mentioned by Sergio, you cannot do this even a year after the question was asked with version 2.4.8 . But if you need to do this, you can use this
db.yourCollection.find({}).forEach(function(doc) { doc.F1 = doc.F1 + ", " + doc.F2; delete doc.F2; db.yourCollection.save(doc); });
source share