mongodb move documents from one collection to another collection

前端 未结 15 1547
感情败类
感情败类 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 22:51

    It can be done on the server-side using the $merge operator (starting from MongoDB 4.2).

    db.getCollection("sourceColl").aggregate([
      { $merge: {
         into: "targetColl",
         on: "_id",
         whenMatched: "fail",
         whenNotMatched: "insert"
      }}
    ]);
    db.getCollection("sourceColl").deleteMany({})
    

提交回复
热议问题