1

データを「人口統計.教育」列から「人口統計.学校」に移動したいと考えています。どうすればこれを行うことができますか?

例えば:

db.users.update({"demographic.education":{$exists: true, $ne: ""}}, {$set: {"demographic.school":demographic.education}})
4

1 に答える 1

2

$renameこれには修飾子を使用できます。

db.users.update({"demographic.education": {$exists: true, $ne: ""}}, {$rename: {"demographic.education": "demographic.school"}})

ドキュメンテーション

于 2012-12-19T22:59:11.953 に答える