$out
を使用できます
集約
db.collection.aggregate([
{ "$addFields": {
"property_new": "$property"
}},
{ "$out": "newCollection" }
])
newCollection
という名前の新しいコレクションが作成されます 名前を既存のものに変更するだけです。
$out
を使用できます
集約
db.collection.aggregate([
{ "$addFields": {
"property_new": "$property"
}},
{ "$out": "newCollection" }
])
newCollection
という名前の新しいコレクションが作成されます 名前を既存のものに変更するだけです。