mongodb move documents from one collection to another collection

前端 未结 15 1520
感情败类
感情败类 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:08

    From MongoDB 3.0 up, you can use the copyTo command with the following syntax:

    db.source_collection.copyTo("target_collection")
    

    Then you can use the drop command to remove the old collection:

    db.source_collection.drop()
    

提交回复
热议问题