Skip to content

Instantly share code, notes, and snippets.

@astleychen
Created August 23, 2024 04:05
Show Gist options
  • Save astleychen/4275a1565825bbaf13fd1592214a773d to your computer and use it in GitHub Desktop.
Save astleychen/4275a1565825bbaf13fd1592214a773d to your computer and use it in GitHub Desktop.
MongoDB - Rename Fields
use("accounts");
db.getCollection("users").updateMany({}, [{ $set: { "address.city": "$address.county", "address.dist": "$address.district" } }], { upsert: true });
db.getCollection("sales").updateMany({}, { $rename: { "nested.new": "nested.country" } });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment