mongodb move documents from one collection to another collection

前端 未结 15 1539
感情败类
感情败类 2020-11-30 22:10

How can documents be moved from one collection to another collection in MongoDB?? For example: I have lot of documents in

15条回答
  •  悲&欢浪女
    2020-11-30 23:00

    Insert and remove:

    var documentsToMove = db.collectionA.find({});
    documentsToMove.forEach(function(doc) {
        db.collectionB.insert(doc);
        db.collectionA.remove(doc);
    });
    

    note: this method might be quite slow for large collections or collections holding large documents.

提交回复
热议问题