I am bit new in mongoDB. Let's say I have a collection having a structure like this:
mycoll
{
_id,
col1 -> NumberInt
}
And there are thousands of documents already in the collection. Now, I want to update every document of the collection to add a new field(i.e. col2) of NumberInt type whose value will be same as the value of field col1. Is there any way to do that in bulk mood not running the update command for each document? I am currently using mongoDB of version 4.4.1
You can use Mongo updateMany() Functionality.
Check this link for further detail, Update Many documentation